/* ==========================================================================
   Font Faces - Neue Plak Family
   ========================================================================== */

/* Regular Family */
@font-face {
    font-family: 'Neue Plak';
    src: url('../fonts/Neue Plak Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('../fonts/Neue Plak SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Plak';
    src: url('../fonts/Neue Plak Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Extended Family */
@font-face {
    font-family: 'Neue Plak Extended';
    src: url('../fonts/Neue Plak Extended Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Plak Extended';
    src: url('../fonts/Neue Plak Extended SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Plak Extended';
    src: url('../fonts/Neue Plak Extended Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Plak Extended';
    src: url('../fonts/Neue Plak Extended ExtraBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Text Family for body/paragraphs */
@font-face {
    font-family: 'Neue Plak Text';
    src: url('../fonts/Neue Plak Text Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Plak Text';
    src: url('../fonts/Neue Plak Text Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Plak Text';
    src: url('../fonts/Neue Plak Text SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
    --font-heading: 'Neue Plak Extended', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Neue Plak Text', 'Neue Plak', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --color-bg-dark: #000000;
    --color-text-dark: #111111;
    --color-text-white: #ffffff;
    --color-text-muted: #9e9e9e;
    --color-star: #ff9800;
    --color-subheading: #14686D;
    --color-projects-bg: #07484C;
    --color-border-subtle: rgba(255, 255, 255, 0.08);
    --color-border-bottom: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   Global Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Global Heading Defaults to enforce Neue Plak Extended everywhere */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #0b1320;
    letter-spacing: -0.01em;
}

p {
    font-family: var(--font-body);
    color: #555c66;
}

button,
input,
select,
textarea {
    font-family: var(--font-body);
}

main {
    overflow-x: hidden;
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    background: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo-link {
    display: inline-block;
}

.site-logo-img {
    width: clamp(140px, 14vw, 215px);
    height: auto;
    max-height: 138px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo-link:hover .site-logo-img {
    transform: scale(1.03);
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.2vw, 32px);
}

.site-nav-list {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav-link {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 1.25vw, 20px);
    color: #111111;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 6px 0;
    text-align: right;
    white-space: nowrap;
    position: relative;
}

.site-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-subheading);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1), left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.site-nav-link:hover::after,
.site-nav-link.active::after {
    width: 100%;
    left: 0;
}

.site-nav-link:hover,
.site-nav-link.active {
    color: var(--color-subheading);
}

/* Rolling Text Track for Buttons */
.btn-text-track {
    display: inline-flex;
    flex-direction: column;
    height: 18px;
    line-height: 18px;
    overflow: hidden;
    position: relative;
}

.btn-text-main,
.btn-text-clone {
    display: block;
    white-space: nowrap;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-text-clone {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.btn-theme-header {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 700;
    font-size: clamp(11.5px, 0.95vw, 13.5px);
    letter-spacing: 0.03em;
    background-color: #14686D;
    color: #ffffff;
    padding: clamp(10px, 1vw, 13px) clamp(16px, 1.8vw, 26px);
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.btn-theme-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a4a4d 0%, #073836 100%);
    z-index: -1;
    transform: translateX(-101%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-theme-header:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 36px rgba(7, 56, 54, 0.45);
}

.btn-theme-header:hover::before {
    transform: translateX(0);
}

.btn-theme-header:hover .btn-text-main {
    transform: translateY(-100%);
}

.btn-theme-header:hover .btn-text-clone {
    transform: translateY(-100%);
}

/* Continuous Light Sheen Sweep */
.btn-shine-sweep {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 45%;
    height: 200%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg) translateX(-150%);
    pointer-events: none;
    z-index: 3;
}

@keyframes btnContinuousShine {
    0% {
        transform: rotate(25deg) translateX(-200%);
    }

    100% {
        transform: rotate(25deg) translateX(350%);
    }
}

.btn-theme-header:hover .btn-shine-sweep,
.hero-cta-btn:hover .btn-shine-sweep {
    animation: btnContinuousShine 1.3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle-btn {
    display: none;
    background: #ffffff;
    border: 1px solid rgba(20, 104, 109, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 24px;
    color: #14686D;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.mobile-toggle-btn:hover,
.mobile-toggle-btn:active {
    background: #14686D;
    color: #ffffff;
    border-color: #14686D;
    transform: scale(1.04);
}

/* Mobile Offcanvas Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 320px;
    max-width: 86vw;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #ffffff;
    z-index: 1000;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.2);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 56, 54, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
}

.mobile-logo-link {
    display: inline-block;
}

.mobile-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.mobile-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f4f7f9;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 16px;
    color: #0b1320;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.mobile-close-btn:hover {
    background: #14686D;
    color: #ffffff;
    transform: rotate(90deg);
}

.mobile-nav-menu {
    margin-bottom: 20px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-links li {
    width: 100%;
}

.mobile-nav-links a {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a2332;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.mobile-nav-links a i {
    font-size: 20px;
    color: #8fa0ab;
    transition: transform 0.25s ease, color 0.25s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(20, 104, 109, 0.08);
    color: #14686D;
}

.mobile-nav-links a:hover i,
.mobile-nav-links a.active i {
    color: #14686D;
    transform: translateX(4px);
}

/* Mobile Drawer Bottom Info & Contacts */
.mobile-drawer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.mobile-contact-card {
    background: #f7fafc;
    border: 1px solid rgba(20, 104, 109, 0.12);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a2332;
    transition: transform 0.2s ease;
}

.mobile-contact-item:hover {
    transform: translateX(3px);
}

.mobile-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #14686D;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.mobile-contact-label {
    display: block;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #718096;
    font-weight: 600;
}

.mobile-contact-val {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0b1320;
}

.mobile-drawer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mobile-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #edf2f7;
    color: #14686D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-social-icon:hover {
    background: #14686D;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #CEDCEC;
    padding-top: 150px;
    padding-bottom: 120px;
    overflow: hidden;
}

/* Dedicated Image Layer positioned to the right */
.hero-bg-image {
    position: absolute;
    top: -20px;
    right: -60px;
    width: 65%;
    height: 108%;
    background-image: url('../images/hero-bg.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, #FFFFFF -6.45%, rgba(255, 255, 255, 0) 35.99%),
        linear-gradient(90deg, #CEDCEC 32%, rgba(206, 220, 236, 0.7) 48%, rgba(206, 220, 236, 0) 70%),
        linear-gradient(0deg, rgba(206, 220, 236, 0.2), rgba(206, 220, 236, 0.2));
    pointer-events: none;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-sub-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: clamp(11px, 1vw, 13px);
    letter-spacing: 0.18em;
    color: var(--color-subheading);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-main-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 4.2vw, 54px);
    line-height: 1.12;
    color: #0b1320;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    max-width: 820px;
}

/* Hero Checkmarks Grid */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin-bottom: 34px;
    max-width: 480px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 500;
    color: #1a2332;
}

.hero-feature-item i {
    color: var(--color-subheading);
    font-size: 17px;
    font-weight: 700;
}

.hero-cta-btn {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.03em;
    background-color: #14686D;
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a4a4d 0%, #073836 100%);
    z-index: -1;
    transform: translateX(-101%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-cta-btn:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(7, 56, 54, 0.5);
}

.hero-cta-btn:hover::before {
    transform: translateX(0);
}

.hero-cta-btn:hover .btn-text-main {
    transform: translateY(-100%);
}

.hero-cta-btn:hover .btn-text-clone {
    transform: translateY(-100%);
}

/* Hero Button Arrow Badge with Continuous Trajectory */
.btn-arrow-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-cta-btn:hover .btn-arrow-badge {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.arrow-track {
    display: inline-flex;
    position: relative;
    width: 14px;
    height: 14px;
    align-items: center;
    justify-content: center;
}

.arrow-track .arrow-main,
.arrow-track .arrow-clone {
    position: absolute;
    font-size: 14px;
    line-height: 1;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.arrow-track .arrow-main {
    transform: translateX(0);
}

.arrow-track .arrow-clone {
    transform: translateX(-150%);
}

.hero-cta-btn:hover .arrow-track .arrow-main {
    transform: translateX(150%);
}

.hero-cta-btn:hover .arrow-track .arrow-clone {
    transform: translateX(0);
}

.why-choose-section {
    background-color: #000000;
    color: var(--color-text-white);
    padding-top: 100px;
    padding-bottom: 160px;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    z-index: 5;
}

.why-choose-bg-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background-image: url('../images/footer-layer-bur-center-white.webp');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    pointer-events: none;
    opacity: 0.85;
    z-index: 1;
}

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

.why-choose-section .sub-title,
.services-section .sub-title,
.testimonials-section .sub-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: clamp(12.5px, 1.05vw, 14.5px);
    letter-spacing: 0.08em;
    color: #9fe2dc;
    margin-bottom: 14px;
}

.why-choose-section .main-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.why-choose-top-desc {
    font-family: var(--font-body);
    font-size: clamp(14.5px, 1.1vw, 16px);
    line-height: 1.7;
    color: #c4c4c4;
    font-weight: 400;
}

/* Overlapping Feature Cards Grid */
.features-overlap-row {
    margin-top: 60px;
    margin-bottom: -220px;
    position: relative;
    z-index: 15;
}

/* Staggered Up & Down Offsets */
@media (min-width: 992px) {
    .features-overlap-row .col-lg-3:nth-child(1) {
        transform: translateY(70px);
    }

    .features-overlap-row .col-lg-3:nth-child(2) {
        transform: translateY(0);
    }

    .features-overlap-row .col-lg-3:nth-child(3) {
        transform: translateY(70px);
    }

    .features-overlap-row .col-lg-3:nth-child(4) {
        transform: translateY(-8px);
    }
}

.feature-card {
    background-color: #ffffff;
    color: #111111;
    border-radius: 8px;
    padding: 42px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease;
    cursor: default;
}

.feature-card:hover {
    background-color: #14686D;
    color: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.35);
}

/* Card Elements */
.feature-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.feature-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: filter 0.35s ease, transform 0.35s ease;
}

/* Fast Response icon (watch-ico.png) is white by source — filter it to brand dark teal #14686D on default white card */
.feature-icon-wrap img[src*="watch-ico"] {
    filter: brightness(0) saturate(100%) invert(34%) sepia(42%) saturate(934%) hue-rotate(137deg) brightness(93%) contrast(91%);
}

.feature-card:hover .feature-icon-wrap img {
    filter: brightness(0) invert(1) !important;
    transform: scale(1.08);
}

.feature-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: clamp(19px, 1.4vw, 23px);
    line-height: 1.25;
    color: #0b1320;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    transition: color 0.35s ease;
}

.feature-card:hover .feature-title {
    color: #ffffff;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: clamp(13.5px, 0.95vw, 15px);
    line-height: 1.65;
    font-weight: 400;
    color: #555c66;
    margin: 0;
    transition: color 0.35s ease;
}

.feature-card:hover .feature-desc {
    color: #e3f2f1;
}

.services-section {
    padding-top: 200px;
    padding-bottom: 120px;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.services-section .sub-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--color-subheading);
    margin-bottom: 14px;
}

.services-section .main-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 1.1;
    color: #0b1320;
    letter-spacing: -0.02em;
}

/* Staggered Masonry Grid */
.services-masonry-grid {
    margin-top: 65px;
}

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

.services-left-col {
    padding-right: 25px;
}

.services-right-col {
    padding-left: 25px;
}

/* Text Card */
.service-text-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.service-icon-wrap {
    width: 65px;
    height: 37px;
    overflow: hidden;
    margin-bottom: 22px;
    display: inline-block;
}

.service-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.service-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.2;
    color: #0d1727;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: clamp(14.5px, 1.2vw, 17px);
    line-height: 1.68;
    color: #555c66;
    margin-bottom: 30px;
    max-width: 530px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Creative "READ MORE" Scaffolding Button
   ========================================================================== */
.service-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding: 6px 0;
    width: fit-content;
}

.readmore-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(20, 104, 109, 0.35);
    background: rgba(20, 104, 109, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 14px rgba(20, 104, 109, 0.06);
}

.readmore-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #14686D 0%, #073836 100%);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.4s ease;
    z-index: 0;
}

.readmore-text-track {
    display: inline-flex;
    flex-direction: column;
    height: 16px;
    line-height: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.readmore-text-main,
.readmore-text-clone {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    color: var(--color-subheading);
    white-space: nowrap;
    display: block;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), color 0.4s ease;
}

.readmore-text-clone {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #ffffff;
}

.readmore-arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #14686D;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.4s ease, color 0.3s ease;
}

.readmore-arrow-track {
    display: inline-flex;
    position: relative;
    width: 13px;
    height: 13px;
    align-items: center;
    justify-content: center;
}

.readmore-arrow-track .arrow-1,
.readmore-arrow-track .arrow-2 {
    position: absolute;
    font-size: 13px;
    line-height: 1;
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.readmore-arrow-track .arrow-1 {
    transform: translate(0, 0);
}

.readmore-arrow-track .arrow-2 {
    transform: translate(-150%, 150%);
}

/* Scaffolding Beam line indicator */
.readmore-beam {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 12px;
}

.beam-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-subheading) 0%, #073836 100%);
    border-radius: 2px;
    transition: width 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.beam-node {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #14686D;
    opacity: 0;
    transform: scale(0);
    margin-left: -2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 8px rgba(20, 104, 109, 0.6);
}

@keyframes nodeRadar {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 104, 109, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(20, 104, 109, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(20, 104, 109, 0);
    }
}

/* Hover States for READ MORE */
.service-readmore-btn:hover .readmore-pill {
    border-color: #073836;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(20, 104, 109, 0.28);
}

.service-readmore-btn:hover .readmore-pill::before {
    opacity: 1;
    transform: scaleX(1);
}

.service-readmore-btn:hover .readmore-text-main {
    transform: translateY(-100%);
    color: #ffffff;
}

.service-readmore-btn:hover .readmore-text-clone {
    transform: translateY(-100%);
}

.service-readmore-btn:hover .readmore-arrow-circle {
    background-color: #ffffff;
    color: #073836;
    transform: scale(1.08) rotate(45deg);
}

.service-readmore-btn:hover .readmore-arrow-track .arrow-1 {
    transform: translate(150%, -150%);
}

.service-readmore-btn:hover .readmore-arrow-track .arrow-2 {
    transform: translate(0, 0);
}

.service-readmore-btn:hover .beam-line {
    width: 32px;
}

.service-readmore-btn:hover .beam-node {
    opacity: 1;
    transform: scale(1);
    animation: nodeRadar 1.4s infinite ease-out;
}

/* Service Image Container */
.service-img-card {
    width: 100%;
}

.service-img-wrap {
    width: 100%;
    max-width: 635px;
    height: 706px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-img-wrap:hover img {
    transform: scale(1.04);
}

/* Overlapping last service image into the Featured Projects section */
.service-overlap-card {
    position: relative;
    z-index: 20;
    margin-bottom: -220px;
}

.service-overlap-card .service-img-wrap {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.projects-section {
    background-color: #073836;
    background-image:
        radial-gradient(ellipse at 80% 20%, rgba(20, 104, 109, 0.5) 0%, transparent 60%),
        url('../images/projects-bg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--color-text-white);
    padding-top: 130px;
    padding-bottom: 85px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.projects-section .sub-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: clamp(11.5px, 0.95vw, 13px);
    letter-spacing: 0.08em;
    color: #9fe2dc;
    margin-bottom: 14px;
}

.projects-section .main-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 5vw, 70px);
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Full Bleed Slider Container (Right Edge Extends to Screen End) */
.projects-slider-fullbleed {
    width: 100%;
    margin-top: 45px;
    overflow: hidden;
}

.projects-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* Card sizing: 2 full cards inside grid + 3rd card cut off at the right viewport edge */
.project-slide-item {
    flex: 0 0 540px;
    width: 540px;
    position: relative;
}

.project-img-card {
    width: 100%;
    height: 480px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background-color: #052322;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.project-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

/* Hover Overlay & Glassmorphic Zoom Badge */
.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 56, 54, 0.92) 0%, rgba(7, 56, 54, 0.35) 50%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
}

.project-zoom-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7) translateY(12px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
}

.project-hover-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

/* Card Hover States */
.project-img-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.9);
}

.project-img-card:hover .project-card-overlay {
    opacity: 1;
    visibility: visible;
}

.project-img-card:hover .project-zoom-btn {
    transform: scale(1) translateY(0);
    background: rgba(255, 255, 255, 0.3);
}

.project-img-card:hover .project-hover-title {
    transform: translateY(0);
}

/* Projects Controls Bar (Counter, Progress Bar, Arrows) */
.projects-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
}

.projects-counter {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    min-width: 70px;
}

.projects-progress-track {
    flex: 1;
    max-width: 520px;
    height: 2px;
    background: rgba(255, 255, 255, 0.22);
    position: relative;
    border-radius: 2px;
    margin: 0 45px;
    overflow: hidden;
}

.projects-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: #ffffff;
    border-radius: 2px;
    transition: width 0.4s ease, transform 0.4s ease;
}

.projects-nav-arrows {
    display: flex;
    align-items: center;
    gap: 22px;
}

.projects-arrow-btn {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    outline: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.projects-arrow-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.projects-arrow-btn:hover:not(:disabled) {
    color: #14686D;
    border-color: #ffffff;
    transform: scale(1.08);
}

.projects-arrow-btn:hover:not(:disabled)::before {
    transform: scale(1);
}

/* Arrow Icon Flying Trajectory */
.projects-arrow-btn .arrow-icon-track {
    display: inline-flex;
    position: relative;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
}

.projects-arrow-btn .arrow-main,
.projects-arrow-btn .arrow-clone {
    position: absolute;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

#projectPrevBtn .arrow-main {
    transform: translateX(0);
}

#projectPrevBtn .arrow-clone {
    transform: translateX(150%);
}

#projectPrevBtn:hover:not(:disabled) .arrow-main {
    transform: translateX(-150%);
}

#projectPrevBtn:hover:not(:disabled) .arrow-clone {
    transform: translateX(0);
}

#projectNextBtn .arrow-main {
    transform: translateX(0);
}

#projectNextBtn .arrow-clone {
    transform: translateX(-150%);
}

#projectNextBtn:hover:not(:disabled) .arrow-main {
    transform: translateX(150%);
}

#projectNextBtn:hover:not(:disabled) .arrow-clone {
    transform: translateX(0);
}

.projects-arrow-btn:disabled,
.projects-arrow-btn.disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.testimonials-section .sub-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--color-subheading);
    margin-bottom: 12px;
}

.testimonials-section .main-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: clamp(34px, 4vw, 70px);
    line-height: 1.1;
    color: #0b1320;
    letter-spacing: -0.02em;
}

.trustindex-reviews-wrap {
    width: 100%;
}

.testimonials-pagination {
    bottom: 8px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d0d7de;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--color-subheading);
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 42px 34px 34px 34px;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.star-rating {
    display: flex;
    gap: 4px;
    color: #ff9800;
    font-size: 20px;
}

.star-rating i {
    line-height: 1;
}

.quote-icon-svg {
    width: 32px;
    height: 24px;
    color: #9aa1a9;
    opacity: 0.85;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 17.5px;
    line-height: 1.6;
    color: #333333;
    font-weight: 400;
    margin-bottom: 40px;
    min-height: 130px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.author-info .author-name {
    font-family: var(--font-body);
    font-size: 21px;
    font-weight: 600;
    color: #0b1320;
    margin-bottom: 4px;
}

.author-info .author-time {
    font-size: 14px;
    color: #777777;
    margin: 0;
    font-weight: 400;
}

.author-avatar-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.author-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Aggregate Rating */
.aggregate-rating-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 40px;
    background: #f8fafb;
    border: 1px solid rgba(20, 104, 109, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.aggregate-rating-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 104, 109, 0.12);
    border-color: rgba(20, 104, 109, 0.35);
}

.avatar-stack {
    display: inline-flex;
    align-items: center;
}

.avatar-stack-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-right: -10px;
}

.avatar-stack-item.badge-count {
    background: #111111;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #333333;
}

.rating-badge .star-icon {
    color: #ff9800;
    font-size: 17px;
}

.rating-score {
    font-weight: 700;
    color: #0b1320;
    font-size: 16px;
}

.rating-text {
    color: #555555;
    font-size: 15px;
    transition: color 0.25s ease;
}

.aggregate-rating-wrapper:hover .rating-text {
    color: var(--color-subheading);
}

.rating-external-icon {
    font-size: 12px;
    color: #8899a6;
    margin-left: 2px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.aggregate-rating-wrapper:hover .rating-external-icon {
    color: var(--color-subheading);
    transform: translate(2px, -2px);
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding-bottom: 60px;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 175px;
    height: auto;
    display: block;
    margin-bottom: 28px;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-btn.facebook {
    background-color: #ffffff;
    color: #000000;
}

.social-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
}

.social-btn.whatsapp {
    background-color: #25d366;
    color: #ffffff;
}

/* Highlighted Google Business Profile Badge */
.footer-gmb-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 10px 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 240px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-gmb-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(66, 133, 244, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.gmb-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    color: #4285F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gmb-badge-text {
    display: flex;
    flex-direction: column;
}

.gmb-stars {
    color: #FBBC05;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.gmb-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-transform: uppercase;
}

.gmb-badge-arrow {
    color: #94a3b8;
    font-size: 14px;
    margin-left: auto;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-gmb-badge:hover .gmb-badge-arrow {
    color: #ffffff;
    transform: translate(2px, -2px);
}

/* Divider Columns (Vertical Lines) */
.footer-col-divider {
    border-left: 1px solid var(--color-border-subtle);
    padding-left: 36px;
}

/* Footer Column Headings */
.footer-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: var(--color-text-white);
    margin-bottom: 26px;
    letter-spacing: -0.01em;
}

/* Footer Links List */
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s ease, transform 0.2s ease;
    font-family: var(--font-body);
}

.footer-links li a .arrow-prefix {
    font-size: 13px;
    color: #888888;
    line-height: 1;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Contact Info Column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon-wrapper {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    margin-top: 3px;
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 13px;
    color: #888888;
    margin-bottom: 3px;
    font-family: var(--font-body);
}

.contact-value {
    color: #e0e0e0;
    font-size: 14.5px;
    line-height: 1.45;
    font-family: var(--font-body);
}

.contact-value a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--color-border-bottom);
    padding: 24px 0;
    text-align: center;
}

.copyright-text {
    margin: 0;
    font-size: 14px;
    color: #999999;
    font-family: var(--font-body);
    font-weight: 400;
}

.developer-credit a {
    color: #b8b8b8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.developer-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================================================
   Scroll Animations & SplitType Utilities
   ========================================================================== */

/* Fade-in elements — hidden by default, revealed via GSAP */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.anim-fade-left {
    opacity: 0;
    transform: translateX(-50px);
}

.anim-fade-right {
    opacity: 0;
    transform: translateX(50px);
}

.anim-scale-in {
    opacity: 0;
    transform: scale(0.92);
}

/* SplitType line/word/char reveal */
.split-reveal .word {
    display: inline-block;
    overflow: hidden;
}

.split-reveal .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

/* Lenis overrides — prevent conflicts with existing layout */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* ==========================================================================
   Responsive Breakpoints & Fine-Tuning
   ========================================================================== */

/* Extra Large Screens / Standard Laptops (max-width: 1399.98px) */
@media (max-width: 1399.98px) {
    .why-choose-section .main-title {
        font-size: 56px;
    }

    .features-overlap-row {
        margin-bottom: -180px;
    }

    .services-section {
        padding-top: 170px;
    }

    .service-img-wrap {
        height: 600px;
    }

    .service-overlap-card {
        margin-bottom: -170px;
    }

    .projects-section {
        padding-top: 110px;
    }

    .project-slide-item {
        flex: 0 0 460px;
        width: 460px;
    }

    .project-img-card {
        height: 430px;
    }
}

/* Medium Laptops & Zoomed Desktops (max-width: 1199.98px) */
@media (max-width: 1199.98px) {
    .site-nav-list {
        gap: clamp(10px, 1.4vw, 18px);
    }

    .nav-menu-wrapper {
        gap: clamp(14px, 1.8vw, 22px);
    }

    .features-overlap-row {
        margin-bottom: -160px;
    }

    .services-section {
        padding-top: 150px;
    }

    .feature-card {
        padding: 34px 22px;
    }

    .service-img-wrap {
        height: 520px;
    }

    .service-overlap-card {
        margin-bottom: -130px;
    }

    .projects-section {
        padding-top: 95px;
    }

    .project-slide-item {
        flex: 0 0 400px;
        width: 400px;
    }

    .project-img-card {
        height: 390px;
    }

    .services-col {
        gap: 60px;
    }
}

/* Tablets & High Zoom (max-width: 1080px) */
@media (max-width: 1080px) {
    .nav-menu-wrapper {
        display: none !important;
    }

    .mobile-toggle-btn {
        display: flex !important;
    }
}

/* Tablets (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .site-header {
        padding: 14px 0;
    }

    .site-logo-img {
        width: clamp(120px, 18vw, 150px);
        height: auto;
    }

    .mobile-toggle-btn {
        display: flex;
    }

    .hero-section {
        padding-top: 130px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .hero-bg-image {
        width: 75%;
        right: -30px;
        opacity: 0.85;
    }

    .hero-main-title {
        font-size: 46px;
        margin-bottom: 22px;
    }

    .hero-overlay-gradient {
        background: linear-gradient(to right, rgba(225, 235, 245, 0.97) 0%, rgba(225, 235, 245, 0.94) 65%, rgba(225, 235, 245, 0.75) 100%);
    }

    .why-choose-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .why-choose-section .main-title,
    .services-section .main-title,
    .projects-section .main-title,
    .testimonials-section .main-title {
        font-size: 40px;
    }

    .features-overlap-row {
        margin-top: 40px;
        margin-bottom: 0;
    }

    .services-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .services-masonry-grid {
        margin-top: 45px;
    }

    .services-col {
        gap: 40px;
    }

    .services-left-col,
    .services-right-col {
        padding-left: 12px;
        padding-right: 12px;
    }

    .service-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .service-desc {
        font-size: 15.5px;
        margin-bottom: 22px;
    }

    .service-img-wrap {
        max-width: 100%;
        height: 440px;
    }

    .service-overlap-card {
        margin-bottom: 0;
    }

    .projects-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .project-slide-item {
        flex: 0 0 350px;
        width: 350px;
    }

    .project-img-card {
        height: 350px;
    }

    .projects-controls {
        margin-top: 40px;
    }

    .projects-progress-track {
        margin: 0 25px;
    }

    .testimonials-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-quote {
        min-height: auto;
        font-size: 16px;
    }

    .footer-col-divider {
        border-left: none;
        padding-left: 12px;
        margin-top: 35px;
    }

    .site-footer {
        padding-top: 60px;
    }
}

/* Mobile Devices (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .site-header {
        padding: 12px 0;
    }

    .site-logo-img {
        width: 120px;
        height: 77px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: auto;
        position: relative;
    }

    .hero-bg-image {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background-position: 80% 20%;
        background-size: cover;
        opacity: 0.85;
    }

    .hero-overlay-gradient {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(206, 220, 236, 0.82) 40%, rgba(206, 220, 236, 0.45) 75%, rgba(206, 220, 236, 0.25) 100%);
    }

    .hero-content-wrapper {
        position: relative;
        z-index: 5;
    }

    .hero-sub-title {
        font-size: 11px;
        letter-spacing: 0.14em;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .hero-main-title {
        font-size: clamp(26px, 7.5vw, 34px);
        line-height: 1.18;
        margin-bottom: 20px;
    }

    .why-choose-section .main-title,
    .services-section .main-title,
    .projects-section .main-title,
    .testimonials-section .main-title {
        font-size: clamp(24px, 6.5vw, 30px);
        line-height: 1.2;
    }

    .why-choose-top-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .feature-card {
        padding: 28px 20px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-desc {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 26px;
    }

    .hero-feature-item {
        font-size: 15.5px;
        font-weight: 600;
    }

    .hero-cta-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 13.5px;
    }

    .services-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .services-section .sub-title,
    .projects-section .sub-title,
    .testimonials-section .sub-title {
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    .services-section .main-title,
    .projects-section .main-title,
    .testimonials-section .main-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .services-masonry-grid {
        margin-top: 35px;
    }

    .services-col {
        gap: 36px;
    }

    .services-left-col,
    .services-right-col {
        padding-left: 8px;
        padding-right: 8px;
    }

    .service-text-card {
        padding: 10px 12px;
    }

    .service-icon-wrap {
        margin-bottom: 16px;
    }

    .service-title {
        font-size: 26px;
        margin-bottom: 14px;
        line-height: 1.25;
    }

    .service-desc {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .service-img-wrap {
        height: 300px;
        border-radius: 8px;
        margin: 0 auto;
    }

    .projects-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .project-slide-item {
        flex: 0 0 84vw;
        width: 84vw;
        min-width: 250px;
    }

    .project-img-card {
        height: 290px;
        border-radius: 8px;
    }

    .project-zoom-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .project-hover-title {
        font-size: 15px;
    }

    .projects-controls {
        flex-wrap: wrap;
        gap: 14px;
        justify-content: space-between;
        margin-top: 30px;
    }

    .projects-counter {
        font-size: 16px;
    }

    .projects-progress-track {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 6px 0 0 0;
    }

    .testimonials-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .testimonial-card {
        padding: 28px 20px 24px 20px;
    }

    .testimonial-quote {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .author-info .author-name {
        font-size: 18px;
    }

    .author-info .author-time {
        font-size: 13px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .site-footer {
        padding-top: 45px;
    }

    .footer-top {
        padding-bottom: 40px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-gmb-badge {
        width: 100%;
        max-width: 280px;
        padding: 10px 14px;
    }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 990;
}

.floating-whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.floating-whatsapp-btn:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-badge-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.8);
    animation: whatsappRadar 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

@keyframes whatsappRadar {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #0b1320;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0b1320;
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 575.98px) {
    .floating-whatsapp-wrap {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp-btn {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================================================
   About Page Clean Styling (Exact Homepage Tokens + Rich Accents)
   ========================================================================== */
.about-hero-section {
    min-height: 48vh;
    display: flex;
    align-items: center;
    background-color: #CEDCEC;
    padding-top: 170px;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
}

/* Expanded content wrapper for inner page titles (Blog, Services, Projects) */
.about-hero-section .hero-content-wrapper {
    max-width: 950px;
}

.about-hero-section .hero-main-title {
    font-size: clamp(28px, 4.2vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Inner page hero image - Full width 100% cover */
.about-hero-section .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-position: center center;
    background-size: cover;
    opacity: 0.95;
    filter: contrast(1.05) brightness(1.02);
}

/* Subtle cinematic overlay allowing full image to show while keeping title legible */
.about-hero-section .hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 35%),
        linear-gradient(90deg, rgba(206, 220, 236, 0.9) 0%, rgba(206, 220, 236, 0.7) 40%, rgba(206, 220, 236, 0.2) 70%, rgba(206, 220, 236, 0.05) 100%);
}

.about-breadcrumbs .breadcrumb-item,
.about-breadcrumbs .breadcrumb-item a {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: clamp(12px, 0.95vw, 13.5px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #4a5568;
    transition: color 0.25s ease;
}

.about-breadcrumbs .breadcrumb-item a:hover {
    color: var(--color-subheading);
}

.about-breadcrumbs .breadcrumb-item.active {
    color: var(--color-subheading);
}

.about-breadcrumbs .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--color-subheading);
    padding: 0 10px;
}

/* Ambient Animated Decorative Blobs */
.about-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    -webkit-filter: blur(75px);
    pointer-events: none;
    opacity: 0.65;
    z-index: 1;
}

.blob-hero {
    top: -30%;
    left: 25%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(20, 104, 109, 0.22) 0%, rgba(206, 220, 236, 0) 70%);
    animation: blobFloat 14s infinite ease-in-out alternate;
}

.blob-story-left {
    top: 15%;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 104, 109, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    animation: blobFloat 18s infinite ease-in-out alternate;
}

.blob-story-right {
    bottom: -100px;
    right: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(206, 220, 236, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    animation: blobFloat 16s infinite ease-in-out alternate-reverse;
}

.blob-process {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(20, 104, 109, 0.07) 0%, rgba(247, 249, 250, 0) 70%);
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -25px) scale(1.08);
    }

    100% {
        transform: translate(-20px, 35px) scale(0.95);
    }
}

/* About Visual Cluster Overlapping Images */
.about-visual-cluster {
    position: relative;
    padding-bottom: 50px;
    padding-right: 40px;
}

.visual-card-primary {
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    border: 4px solid #ffffff;
    max-height: 480px;
    border-radius: 14px;
}

.visual-card-primary img {
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-card-primary:hover img {
    transform: scale(1.03);
}

.visual-card-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    z-index: 2;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
    border: 4px solid #ffffff;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

.visual-card-secondary:hover {
    transform: translateY(-6px) scale(1.02);
}

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

/* Floating Experience Pill */
.visual-floating-exp-pill {
    position: absolute;
    top: 20px;
    left: -15px;
    background: #14686D;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 16px 36px rgba(20, 104, 109, 0.38);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    border: 3px solid #ffffff;
    animation: pillFloat 4s infinite ease-in-out alternate;
}

@keyframes pillFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.exp-icon-circle {
    font-size: 18px;
    color: #9fe2dc;
    line-height: 1;
}

.exp-text-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.exp-val {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.exp-tag {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.95;
}

/* About Story Section */
.about-story-section {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.about-story-section .sub-title,
.about-process-section .sub-title,
.services-archive-section .sub-title,
.projects-gallery-section .sub-title {
    font-family: 'Neue Plak Extended', sans-serif !important;
    font-weight: 600 !important;
    font-size: clamp(12.5px, 1.05vw, 14.5px);
    letter-spacing: 0.08em;
    color: var(--color-subheading);
    margin-bottom: 14px;
    display: block;
}

.about-story-section .main-title,
.about-process-section .main-title,
.services-archive-section .main-title,
.projects-gallery-section .main-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.1;
    color: #0b1320;
    letter-spacing: -0.02em;
}

.about-text-lead {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.15vw, 17.5px);
    line-height: 1.7;
    color: #0b1320;
    font-weight: 600;
}

.about-text-body {
    font-family: var(--font-body);
    font-size: clamp(14.5px, 1.1vw, 16px);
    line-height: 1.7;
    color: #555c66;
    font-weight: 400;
}

/* Designed 2x2 Feature Badge Grid */
.about-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-badge-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-badge-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--color-subheading);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-badge-card:hover {
    background: #ffffff;
    border-color: rgba(20, 104, 109, 0.35);
    box-shadow: 0 12px 28px rgba(20, 104, 109, 0.12);
    transform: translateY(-4px);
}

.about-badge-card:hover::before {
    opacity: 1;
}

.badge-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(20, 104, 109, 0.12) 0%, rgba(20, 104, 109, 0.04) 100%);
    border: 1px solid rgba(20, 104, 109, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-subheading);
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.about-badge-card:hover .badge-icon-box {
    background: var(--color-subheading);
    color: #ffffff;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 6px 16px rgba(20, 104, 109, 0.3);
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: 2px;
}

.badge-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #0f172a;
}

/* Why Choose Us on About & Services pages */
#about-why-choose,
#services-why-choose {
    padding-top: 90px;
    padding-bottom: 100px;
}

.about-features-grid {
    margin-top: 20px;
}

/* Process Section with Header Icon Wrap */
/* 4-Step Process Cards (Normal state animation + rich hover transitions) */
.about-step-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 34px 26px;
    height: 100%;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* Subtle top glow line on hover */
.about-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9fe2dc, var(--color-subheading), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3), 0 0 25px rgba(159, 226, 220, 0.2);
    border-color: rgba(159, 226, 220, 0.5);
    background: #ffffff;
}

.about-step-card:hover::before {
    opacity: 1;
}

.step-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.step-badge {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-subheading);
    line-height: 1;
    letter-spacing: -0.02em;
    transition: transform 0.35s ease, color 0.35s ease;
}

.about-step-card:hover .step-badge {
    transform: scale(1.1);
    color: #07484C;
}

.step-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(20, 104, 109, 0.12) 0%, rgba(20, 104, 109, 0.04) 100%);
    border: 1px solid rgba(20, 104, 109, 0.2);
    color: var(--color-subheading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-step-card:hover .step-icon {
    background: var(--color-subheading);
    color: #ffffff;
    transform: rotate(10deg) scale(1.12);
    box-shadow: 0 8px 20px rgba(20, 104, 109, 0.35);
}

.step-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #0b1320;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.about-step-card:hover .step-title {
    color: var(--color-subheading);
}

.step-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.65;
    color: #555c66;
    margin: 0;
}

.about-process-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #07484C;
    background-image: linear-gradient(135deg, rgba(7, 72, 76, 0.92) 0%, rgba(11, 19, 32, 0.88) 100%),
        url('../images/Commercial-Scaffolding.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(20, 104, 109, 0.4) 0%, rgba(7, 72, 76, 0.9) 80%);
    pointer-events: none;
    z-index: 1;
}

.about-process-section .sub-title {
    color: #9fe2dc !important;
    font-size: clamp(11.5px, 1vw, 13.5px) !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 12px;
}

.about-process-section .main-title {
    color: #ffffff !important;
    font-size: clamp(28px, 3.6vw, 46px) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em;
}

.about-process-section .why-choose-top-desc {
    color: #cbd5e1 !important;
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.7;
}

.about-process-section .btn-theme-header {
    background-color: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-process-section .btn-theme-header:hover {
    background-color: #ffffff !important;
    color: #07484C !important;
    border-color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .about-process-section {
        background-attachment: scroll;
        /* Smooth performance on mobile */
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* ==========================================================================
   Services Page & Card Animations
   ========================================================================== */
.services-archive-section {
    background-color: #ffffff;
    padding-top: 90px;
    padding-bottom: 100px;
}

.services-cards-grid {
    margin-top: 20px;
}

.service-premium-card {
    background: #ffffff;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    position: relative;
    cursor: pointer;
}

.service-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(20, 104, 109, 0.16);
    border-color: rgba(20, 104, 109, 0.35);
}

.service-card-cover-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-indent: -9999px;
}

.service-card-img-wrap {
    position: relative;
    height: 230px;
    background: #0b1320;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s ease;
    opacity: 0.92;
}

.service-premium-card:hover .service-card-img-wrap img {
    transform: scale(1.05);
    opacity: 1;
}

.service-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(11, 19, 32, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

/* Uncropped Icon Pill located right on the image border */
.service-card-icon-pill {
    position: absolute;
    bottom: -22px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #14686D;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(20, 104, 109, 0.35);
    border: 3px solid #ffffff;
    z-index: 5;
    transition: transform 0.35s ease, background-color 0.35s ease;
}

.service-premium-card:hover .service-card-icon-pill {
    background: #0b1320;
    transform: scale(1.1) rotate(-6deg);
}

.service-card-body {
    padding: 34px 26px 26px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0b1320;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-premium-card:hover .service-card-title {
    color: var(--color-subheading);
}

.service-card-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.65;
    color: #555c66;
    margin-bottom: 22px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card-footer {
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

/* Premium Designed READ MORE Button */
.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #0b1320;
    transition: all 0.35s ease;
}

.service-btn-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(20, 104, 109, 0.1);
    color: var(--color-subheading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.35s ease;
}

.service-premium-card:hover .service-card-btn {
    background: var(--color-subheading);
    color: #ffffff;
    border-color: var(--color-subheading);
    box-shadow: 0 6px 18px rgba(20, 104, 109, 0.3);
}

.service-premium-card:hover .service-btn-arrow {
    background: #ffffff;
    color: var(--color-subheading);
    transform: translateX(4px);
}

.service-premium-card:hover .service-card-btn .btn-text-main {
    transform: translateY(-100%);
}

.service-premium-card:hover .service-card-btn .btn-text-clone {
    transform: translateY(-100%);
}

/* ==========================================================================
   Recent Projects & Filter Tabs Styling
   ========================================================================== */
.projects-gallery-section {
    background-color: #ffffff;
    padding-top: 90px;
    padding-bottom: 100px;
}

.projects-filter-nav-wrap {
    display: flex;
    justify-content: center;
}

.projects-filter-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 6px;
    margin: 0;
    background: #f1f5f9;
    /* border-radius: 50px; */
    border: 1px solid #e2e8f0;
}

.filter-tab-btn {
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 20px;
    /* border-radius: 40px; */
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.filter-tab-btn i {
    font-size: 13px;
    color: #64748b;
    transition: color 0.3s ease;
}

.filter-tab-btn:hover {
    color: var(--color-subheading);
    background: rgba(255, 255, 255, 0.7);
}

.filter-tab-btn:hover i {
    color: var(--color-subheading);
}

.filter-tab-btn.active {
    background: var(--color-subheading);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(20, 104, 109, 0.35);
}

.filter-tab-btn.active i {
    color: #ffffff;
}

/* Portfolio Cards Grid */
.project-grid-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-portfolio-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.project-portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(20, 104, 109, 0.15);
    border-color: rgba(20, 104, 109, 0.35);
}

.project-card-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #0b1320;
}

.project-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
    opacity: 0.94;
}

.project-portfolio-card:hover .project-card-thumb img {
    transform: scale(1.08);
    opacity: 1;
}

.project-card-cat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(11, 19, 32, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.project-card-cat-badge i {
    color: #9fe2dc;
}

.project-card-zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-subheading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8) translateY(8px);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
    text-decoration: none;
}

.project-portfolio-card:hover .project-card-zoom-btn {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.project-card-zoom-btn:hover {
    background: var(--color-subheading);
    color: #ffffff;
    transform: scale(1.1) rotate(6deg);
}

.project-card-content {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.project-card-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-card-loc i {
    color: var(--color-subheading);
    font-size: 12px;
}

.project-card-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #0b1320;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.project-portfolio-card:hover .project-card-title {
    color: var(--color-subheading);
}

@media (max-width: 767.98px) {
    .projects-filter-list {
        border-radius: 12px;
        gap: 6px;
    }

    .filter-tab-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .project-card-thumb {
        height: 210px;
    }
}

/* ==========================================================================
   Testimonials Page & Google Review CTA Button
   ========================================================================== */
.testimonials-page-section {
    background-color: #ffffff;
    padding-top: 90px;
    padding-bottom: 100px;
}

.google-review-external-btn {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 700;
    font-size: clamp(11.5px, 0.95vw, 13.5px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background-color: #0b1320;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.google-review-external-btn:hover {
    background-color: var(--color-subheading);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(20, 104, 109, 0.35);
}

.google-review-external-btn .btn-arrow-badge i {
    font-size: 16px;
    color: #ea4335;
    transition: transform 0.3s ease;
}

.google-review-external-btn:hover .btn-arrow-badge i {
    color: #ffffff;
    transform: scale(1.15) rotate(10deg);
}

/* ==========================================================================
   Contact Page Styling
   ========================================================================== */
.contact-page-section {
    background-color: #ffffff;
    padding-top: 90px;
    padding-bottom: 100px;
}

.contact-info-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 34px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(20, 104, 109, 0.14);
    border-color: rgba(20, 104, 109, 0.35);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(20, 104, 109, 0.1);
    color: var(--color-subheading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: var(--color-subheading);
    color: #ffffff;
    transform: scale(1.1) rotate(4deg);
}

.contact-card-tag {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-subheading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.contact-card-heading {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0b1320;
    margin-bottom: 12px;
}

.contact-card-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.65;
    color: #555c66;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-subheading);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-link:hover {
    color: #0b1320;
    transform: translateX(4px);
}

.contact-card-subtext {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #94a3b8;
    font-weight: 500;
}

/* Contact Main Box (Form + Side Panel) */
.contact-main-wrapper {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.2;
    color: #0b1320;
    letter-spacing: -0.01em;
}

.contact-input {
    font-family: var(--font-body);
    font-size: 14.5px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    color: #0b1320;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input:focus {
    border-color: var(--color-subheading);
    box-shadow: 0 0 0 3px rgba(20, 104, 109, 0.15);
    outline: none;
}

.form-label {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

/* ==========================================================================
   WPForms Custom Styling Overrides (Exact 1:1 Theme Match)
   ========================================================================== */
.custom-wpforms-wrapper .wpforms-container {
    margin: 0 !important;
}

.custom-wpforms-wrapper .wpforms-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custom-wpforms-wrapper .wpforms-field-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.custom-wpforms-wrapper .wpforms-field {
    padding: 0 !important;
    margin: 0 !important;
}

.custom-wpforms-wrapper .wpforms-field:nth-child(5),
.custom-wpforms-wrapper .wpforms-field:nth-child(6) {
    grid-column: span 2;
}

.custom-wpforms-wrapper .wpforms-field-label {
    font-family: 'Neue Plak Extended', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.custom-wpforms-wrapper .wpforms-required-label {
    color: #ef4444 !important;
}

.custom-wpforms-wrapper input[type="text"],
.custom-wpforms-wrapper input[type="email"],
.custom-wpforms-wrapper input[type="tel"],
.custom-wpforms-wrapper select,
.custom-wpforms-wrapper textarea {
    font-family: var(--font-body) !important;
    font-size: 14.5px !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: #0b1320 !important;
    width: 100% !important;
    max-width: 100% !important;
    background-color: #ffffff !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
    box-sizing: border-box !important;
}

.custom-wpforms-wrapper input[type="text"]:focus,
.custom-wpforms-wrapper input[type="email"]:focus,
.custom-wpforms-wrapper input[type="tel"]:focus,
.custom-wpforms-wrapper select:focus,
.custom-wpforms-wrapper textarea:focus {
    border-color: var(--color-subheading) !important;
    box-shadow: 0 0 0 3px rgba(20, 104, 109, 0.15) !important;
    outline: none !important;
}

.custom-wpforms-wrapper .wpforms-submit-container {
    padding: 0 !important;
    margin-top: 10px !important;
}

.custom-wpforms-wrapper .wpforms-submit {
    font-family: 'Neue Plak Extended', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    background-color: #0b1320 !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 6px !important;
    border: none !important;
    width: 100% !important;
    cursor: pointer !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.custom-wpforms-wrapper .wpforms-submit:hover {
    background-color: var(--color-subheading) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 36px rgba(20, 104, 109, 0.35) !important;
}

@media (max-width: 767.98px) {
    .custom-wpforms-wrapper .wpforms-field-container {
        grid-template-columns: 1fr;
    }

    .custom-wpforms-wrapper .wpforms-field:nth-child(5),
    .custom-wpforms-wrapper .wpforms-field:nth-child(6) {
        grid-column: span 1;
    }
}

.contact-side-panel {
    background: #07484C;
    color: #ffffff;
}

.side-panel-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

.side-panel-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: #cbd5e1;
}

.contact-perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-perks-list li .perk-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #9fe2dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-perks-list li strong {
    display: block;
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 13.5px;
    color: #ffffff;
    margin-bottom: 2px;
}

.contact-perks-list li span {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: #94a3b8;
    line-height: 1.5;
    display: block;
}

.contact-whatsapp-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 16px 20px;
}

.wa-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* ==========================================================================
   404 Page Styling
   ========================================================================== */
.error-404-section {
    background-color: #ffffff;
    padding-top: 90px;
    padding-bottom: 110px;
}

.error-code-badge {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: clamp(80px, 12vw, 150px);
    font-weight: 900;
    color: rgba(20, 104, 109, 0.12);
    line-height: 0.9;
    letter-spacing: -0.04em;
    user-select: none;
}

/* ==========================================================================
   Thank You Page Styling
   ========================================================================== */
.thank-you-section {
    background-color: #ffffff;
    padding-top: 90px;
    padding-bottom: 110px;
}

.thank-you-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
}

.thank-you-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.next-step-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 18px;
    height: 100%;
}

.step-num {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-subheading);
    margin-bottom: 8px;
}

.step-heading {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0b1320;
    margin-bottom: 6px;
}

.step-txt {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.urgent-call-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

/* ==========================================================================
   Default Index / Archive Page Styling
   ========================================================================== */
.default-page-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 100px;
}

.default-content-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 36px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.default-body-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.default-body-text h2,
.default-body-text h3 {
    margin-top: 28px;
    margin-bottom: 14px;
}

.posts-pagination-wrap .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.posts-pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #0b1320;
    text-decoration: none;
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
}

.posts-pagination-wrap .page-numbers.current,
.posts-pagination-wrap .page-numbers:hover {
    background: var(--color-subheading);
    color: #ffffff;
    border-color: var(--color-subheading);
}

/* ==========================================================================
   Single Service Post Layout & Sidebar
   ========================================================================== */
.single-service-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 100px;
}

/* Responsive Fixed-Height Featured Hero Image Container */
.single-service-featured-img {
    position: relative;
    width: 100%;
    height: clamp(280px, 36vw, 460px);
    border-radius: 16px;
    overflow: hidden;
    background: #0b1320;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.single-service-featured-img .service-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.single-service-featured-img:hover .service-main-img {
    transform: scale(1.04);
}

/* Floating Glassmorphism Badges on Image */
.service-featured-img-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
    z-index: 2;
}

.service-hero-pill-badge {
    background: rgba(11, 19, 32, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-hero-pill-badge i {
    color: #9fe2dc;
    font-size: 13px;
}

.service-hero-cert-badge {
    background: rgba(20, 104, 109, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-hero-cert-badge i {
    color: #86efac;
}

/* Sidebar Services Navigation Card */
.service-sidebar-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sidebar-card-subtitle {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--color-subheading);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.sidebar-card-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #0b1320;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.sidebar-services-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.sidebar-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--color-subheading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sidebar-item-name {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 13px;
    font-weight: 600;
    flex-grow: 1;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.sidebar-item-arrow {
    font-size: 12px;
    color: #94a3b8;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.sidebar-service-item:hover {
    background: rgba(20, 104, 109, 0.08);
    border-color: rgba(20, 104, 109, 0.3);
    color: var(--color-subheading);
    transform: translateX(4px);
}

.sidebar-service-item:hover .sidebar-item-icon {
    background: var(--color-subheading);
    color: #ffffff;
    border-color: var(--color-subheading);
}

.sidebar-service-item:hover .sidebar-item-arrow {
    color: var(--color-subheading);
    transform: translateX(3px);
}

.sidebar-service-item.active {
    background: var(--color-subheading);
    border-color: var(--color-subheading);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(20, 104, 109, 0.28);
}

.sidebar-service-item.active .sidebar-item-icon {
    background: #ffffff;
    color: var(--color-subheading);
    border-color: #ffffff;
}

.sidebar-service-item.active .sidebar-item-name {
    color: #ffffff;
}

.sidebar-service-item.active .sidebar-item-arrow {
    color: #ffffff;
}

/* Sidebar Call To Action Box */
.service-sidebar-cta-box {
    background: #07484C;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(7, 72, 76, 0.25);
}

.cta-glow-blob {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 104, 109, 0.8) 0%, rgba(7, 72, 76, 0) 70%);
    filter: blur(25px);
    pointer-events: none;
}

.sidebar-cta-tag {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #9fe2dc;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.sidebar-cta-heading {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
}

.sidebar-cta-desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.6;
    color: #cbd5e1;
}

@media (max-width: 767.98px) {
    .single-service-featured-img {
        height: 240px;
    }

    .service-hero-cert-badge {
        display: none;
    }
}

/* ==========================================================================
   Blog Archive & Single Post Styling
   ========================================================================== */
.blog-archive-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 100px;
}

.blog-card-item {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.blog-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(20, 104, 109, 0.14);
    border-color: rgba(20, 104, 109, 0.35);
}

.blog-card-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #0b1320;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.95;
}

.blog-card-item:hover .blog-card-thumb img {
    transform: scale(1.06);
    opacity: 1;
}

.blog-card-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 19, 32, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.blog-card-content {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
}

.meta-divider {
    color: #cbd5e1;
}

.blog-card-title {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.blog-card-title a {
    color: #0b1320;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-item:hover .blog-card-title a {
    color: var(--color-subheading);
}

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-read-more-link {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-subheading);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.blog-read-more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-card-item:hover .blog-read-more-link {
    color: #0b1320;
}

.blog-card-item:hover .blog-read-more-link i {
    transform: translateX(4px);
}

/* Single Post Specific Styles */
.single-post-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 100px;
}

.single-post-featured-img {
    width: 100%;
    height: clamp(280px, 36vw, 460px);
    overflow: hidden;
    background: #0b1320;
}

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

.single-post-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.single-post-body h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
}

.single-post-body h3 {
    font-size: 21px;
    margin-top: 28px;
    margin-bottom: 14px;
}

.single-post-body ul,
.single-post-body ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.single-post-body li {
    margin-bottom: 10px;
}

.author-avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(20, 104, 109, 0.1);
    color: var(--color-subheading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.post-nav-card {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: all 0.25s ease;
}

.post-nav-card:hover {
    background: rgba(20, 104, 109, 0.08);
    border-color: rgba(20, 104, 109, 0.3);
}

.post-nav-card:hover .post-nav-title {
    color: var(--color-subheading) !important;
}

.hover-bg-light {
    transition: background-color 0.25s ease;
}

.hover-bg-light:hover {
    background-color: #f1f5f9;
}

/* ==========================================================================
   Get A Free Quote Modal Popup Styling
   ========================================================================== */
.quote-popup-modal {
    background: rgba(11, 19, 32, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1055;
}

.quote-modal-content {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.quote-modal-header {
    border-bottom: none;
}

.quote-modal-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quote-modal-close-btn:hover {
    background: #0b1320;
    color: #ffffff;
    border-color: #0b1320;
    transform: rotate(90deg);
}

.modal-trust-footer {
    border-color: #f1f5f9 !important;
}

@media (max-width: 575.98px) {
    .quote-modal-content {
        border-radius: 12px;
    }
}

/* Modal Compact Form Grid */
.modal-compact-form .wpforms-field-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.modal-compact-form .wpforms-field:nth-child(5) {
    grid-column: span 2;
}

.modal-compact-form input[type="text"],
.modal-compact-form input[type="email"],
.modal-compact-form input[type="tel"],
.modal-compact-form select {
    padding: 10px 14px !important;
    font-size: 14px !important;
}

.modal-compact-form .wpforms-submit {
    padding: 12px 24px !important;
    font-size: 12.5px !important;
}

@media (max-width: 575.98px) {
    .modal-compact-form .wpforms-field-container {
        grid-template-columns: 1fr;
    }

    .modal-compact-form .wpforms-field:nth-child(5) {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Single Service FAQ Accordion
   ========================================================================== */
.service-faq-accordion-wrap {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #e2e8f0;
}

.service-custom-faq-accordion .accordion-item.service-faq-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.service-custom-faq-accordion .accordion-item.service-faq-card:hover {
    border-color: rgba(20, 104, 109, 0.35);
    box-shadow: 0 8px 24px rgba(20, 104, 109, 0.08);
}

.service-custom-faq-accordion .accordion-button {
    background-color: #ffffff;
    color: #0b1320;
    padding: 18px 22px;
    box-shadow: none !important;
    border: none;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 12px !important;
    transition: background-color 0.25s ease;
}

.service-custom-faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: var(--color-subheading);
    border-bottom: 1px solid #e2e8f0;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.faq-number-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(20, 104, 109, 0.08);
    color: var(--color-subheading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Neue Plak Extended', sans-serif;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-custom-faq-accordion .accordion-button:not(.collapsed) .faq-number-badge {
    background: var(--color-subheading);
    color: #ffffff;
}

.faq-question-text {
    font-family: 'Neue Plak Extended', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: inherit;
    text-align: left;
    margin-right: auto;
}

.service-custom-faq-accordion .accordion-button::after {
    background-size: 14px;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.service-custom-faq-accordion .accordion-body {
    padding: 22px 26px;
    background: #ffffff;
}

.faq-answer-content p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
}

.faq-answer-content p+p {
    margin-top: 12px;
}

@media (max-width: 767.98px) {
    .service-custom-faq-accordion .accordion-button {
        padding: 14px 16px;
        gap: 10px;
    }

    .faq-number-badge {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .faq-question-text {
        font-size: 13.5px;
    }

    .service-custom-faq-accordion .accordion-body {
        padding: 16px 18px;
    }
}

.project-card-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}