:root {
    --primary: #1a5f4a;
    --primary-dark: #134436;
    --secondary: #1e3a5f;
    --accent: #d4a017;
    --accent-hover: #b8890f;
    --text: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; transition: color 0.3s, background 0.3s; }

.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--accent); }

.top-bar-social a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.main-navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 12px 0;
    transition: padding 0.3s, box-shadow 0.3s;
}

.main-navbar.navbar-scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.site-brand {
    padding: 0;
    margin-right: 1rem;
}

.site-logo {
    height: 52px;
    width: auto;
    display: block;
    transition: height 0.3s;
}

.navbar-scrolled .site-logo {
    height: 44px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 1;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    padding: 8px 14px !important;
}

.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    background: transparent;
}

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

.hero-slider-section {
    position: relative;
}

.hero-swiper {
    width: 100%;
    min-height: 85vh;
}

.hero-slide {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    animation: heroKenBurns 18s ease-in-out infinite alternate;
    transform: scale(1.05);
}

@keyframes heroKenBurns {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero-pagination {
    z-index: 5;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
}

.hero-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 6;
    width: auto;
}

.hero-nav-prev,
.hero-nav-next {
    position: static;
    margin: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    transition: var(--transition);
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-nav-prev::after,
.hero-nav-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.hero-pagination {
    position: static !important;
    width: auto !important;
    bottom: auto !important;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-cue i {
    font-size: 0.9rem;
}

.hero-scroll-cue:hover {
    color: var(--accent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.btn-glow {
    box-shadow: 0 8px 28px rgba(212, 160, 23, 0.35);
}

.btn-glow:hover {
    box-shadow: 0 12px 36px rgba(212, 160, 23, 0.45);
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(19, 68, 54, 0.92) 0%, rgba(26, 95, 74, 0.78) 45%, rgba(30, 58, 95, 0.55) 100%),
        linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
}

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

.hero-content-inner {
    animation: heroFadeIn 1s ease 0.2s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero-lead {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 620px;
}

.hero-actions .btn-lg {
    padding: 14px 32px;
}

.trust-strip {
    background: var(--white);
    padding: 0 0 48px;
    margin-top: -40px;
    position: relative;
    z-index: 4;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.1) 0%, rgba(212, 160, 23, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-wrap i {
    font-size: 1.25rem;
    color: var(--primary);
}

.trust-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.trust-card-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    color: var(--primary);
    line-height: 1.3;
}

.trust-card-text span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-label-light {
    color: rgba(255,255,255,0.85);
}

.section-heading {
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.about-home-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-image-frame .content-image {
    height: 420px;
    border-radius: 0;
}

.about-floating-stat {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}

.about-floating-stat i {
    font-size: 1.4rem;
    color: var(--accent);
}

.about-floating-stat strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1.1;
}

.about-floating-stat span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.about-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.about-stat-pill {
    background: var(--white);
    border: 1px solid rgba(26, 95, 74, 0.12);
    border-radius: 10px;
    padding: 12px 18px;
    text-align: center;
    min-width: 90px;
}

.about-stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.process-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
}

.section-title-light h2 {
    color: var(--white);
}

.section-title-light p {
    color: rgba(255, 255, 255, 0.75);
}

.process-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.process-step-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.1em;
}

.process-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    color: var(--white);
}

.process-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.process-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.about-badge-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.95;
}

.about-text {
    color: var(--text);
    font-size: 1.05rem;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.about-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
}

.about-highlights li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.service-card-link {
    display: block;
    color: inherit;
    height: 100%;
}

.service-card-link:hover {
    color: inherit;
}

.service-card-cta {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
    transition: color 0.3s, transform 0.3s;
}

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

.service-card-link:hover .service-card-cta i {
    transform: translateX(4px);
    display: inline-block;
    transition: transform 0.3s;
}

.section-padding { padding: 80px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.service-card-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.service-card-body {
    padding: 35px 24px 24px;
    position: relative;
}

.service-card-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(26, 95, 74, 0.06);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card-link:hover .service-card-img {
    transform: scale(1.05);
}

.impact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.impact-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, background 0.3s;
}

.impact-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}

.impact-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.impact-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 6px;
}

.impact-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.project-card-link {
    display: block;
    color: inherit;
    height: 100%;
}

.project-card-link:hover {
    color: inherit;
}

.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    height: 100%;
    transition: var(--transition);
}

.project-card-link:hover .project-card {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.project-card-media {
    position: relative;
    overflow: hidden;
}

.project-card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.project-card-link:hover .project-card-img {
    transform: scale(1.06);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(19, 68, 54, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: var(--transition);
}

.project-card-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(12px);
    transition: var(--transition);
}

.project-card-link:hover .project-card-overlay {
    opacity: 1;
}

.project-card-link:hover .project-card-overlay span {
    transform: translateY(0);
}

.project-card-media .project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.project-card-body { padding: 24px; }

.project-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.project-service-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(26, 95, 74, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.project-excerpt {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.project-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-completed { background: #c6f6d5; color: #22543d; }
.badge-ongoing { background: #fef3c7; color: #92400e; }
.badge-planned { background: #e2e8f0; color: #4a5568; }

.why-choose-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.why-choose-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,0.88);
}

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

.why-lead {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-feature-card {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.why-feature-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.why-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.why-feature-card h3 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.why-feature-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-mosaic-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
}

.gallery-mosaic-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(19, 68, 54, 0.88) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-mosaic-overlay i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-mosaic-caption {
    font-size: 0.82rem;
    text-align: center;
}

.gallery-mosaic-item:hover img {
    transform: scale(1.08);
}

.gallery-mosaic-item:hover .gallery-mosaic-overlay {
    opacity: 1;
}

.gallery-mosaic-item:hover .gallery-mosaic-overlay i {
    transform: scale(1);
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,95,74,0.85);
}

.cta-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }

.cta-lead {
    font-size: 1.1rem;
    opacity: 0.92;
}

.cta-contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cta-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.cta-contact-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-contact-chip-static {
    cursor: default;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.client-logo-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    min-width: 140px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.client-logo-card img {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: var(--transition);
}

.client-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.client-logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.client-name-fallback {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-card-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-photo img {
    transform: scale(1.05);
}

.team-card-body {
    padding: 20px 16px 24px;
    border-top: 3px solid var(--accent);
}

.team-card-body h3 {
    margin-bottom: 6px;
    color: var(--primary);
}

.team-card-role {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.equipment-card {
    transition: var(--transition);
}

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.equipment-card-media {
    position: relative;
    overflow: hidden;
}

.equipment-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 95, 74, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.5rem;
}

.equipment-card:hover .equipment-card-overlay {
    opacity: 1;
}

.equipment-card-body {
    padding: 18px 20px 22px;
}

.home-page .section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    margin: 16px auto 0;
    border-radius: 2px;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.client-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.client-logo:hover { opacity: 1; filter: grayscale(0); }

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero-sm {
    padding: 60px 0 40px;
}

.content-image {
    border-radius: 12px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 30px;
}

.site-footer h5, .site-footer h6 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: var(--accent); }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 10px; }
.footer-contact i { color: var(--accent); width: 20px; margin-right: 8px; }

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 8px;
}

.footer-divider { border-color: rgba(255,255,255,0.15); margin: 30px 0 20px; }
.tagline-small { font-size: 0.85rem; opacity: 0.7; }

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26,95,74,0.15);
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    display: block;
}

.filter-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 8px 18px;
    border-radius: 25px;
    margin: 4px;
    font-weight: 500;
}

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

.value-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    height: 100%;
}

.value-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.equipment-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.equipment-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.video-thumb {
    position: relative;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
    background: var(--white);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-detail-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0 60px;
}

.service-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 68, 54, 0.92) 0%, rgba(30, 58, 95, 0.82) 100%);
}

.service-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

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

.service-detail-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-detail-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.service-detail-lead {
    font-size: 1.1rem;
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-intro {
    margin-bottom: 40px;
}

.service-detail-intro h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.service-detail-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

.service-detail-section {
    margin-bottom: 40px;
}

.service-section-heading {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(26, 95, 74, 0.12);
}

.service-offering-grid {
    display: grid;
    gap: 16px;
}

.service-offering-card {
    display: flex;
    gap: 16px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.service-offering-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.service-offering-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

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

.service-offering-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.service-sidebar-card h4,
.service-sidebar-card h5 {
    color: var(--primary);
    margin-bottom: 12px;
}

.service-sidebar-card p {
    font-size: 0.92rem;
    color: var(--text-light);
}

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

.service-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.service-contact-list i {
    color: var(--accent);
    width: 18px;
    margin-top: 3px;
}

.service-contact-list a {
    color: var(--text);
}

.service-contact-list a:hover {
    color: var(--primary);
}

.service-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar-links li {
    margin-bottom: 10px;
}

.service-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.9rem;
    padding: 8px 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.service-sidebar-links a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.service-sidebar-links i {
    color: var(--accent);
    width: 18px;
    text-align: center;
}

.process-card-light {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.process-card-light h3 {
    color: var(--primary);
}

.process-card-light p {
    color: var(--text-light);
}

.process-step-num-light {
    color: rgba(26, 95, 74, 0.15);
}

@media (max-width: 991px) {
    .masonry-grid { column-count: 2; }
    .hero-section { min-height: 70vh; }
    .hero-swiper { min-height: 70vh; }
    .hero-slide { min-height: 70vh; }
    .site-logo { height: 44px; }
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-mosaic-featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .why-feature-grid { grid-template-columns: 1fr; }
    .about-floating-stat { left: 12px; top: 12px; }
    .hero-scroll-cue { display: none; }
    .process-section { padding: 60px 0; }
    .service-sidebar { position: static; }
    .service-detail-hero { min-height: 360px; padding: 60px 0 40px; }
}

@media (max-width: 575px) {
    .masonry-grid { column-count: 1; }
    .section-padding { padding: 50px 0; }
    .top-bar-contact { font-size: 0.75rem; }
    .trust-strip { padding: 0 0 32px; margin-top: -24px; }
    .trust-card { flex-direction: column; text-align: center; padding: 16px; }
    .trust-card-text { text-align: center; }
    .about-badge {
        bottom: 12px;
        right: 12px;
        padding: 12px 14px;
    }
    .about-badge-number { font-size: 1.5rem; }
    .about-image-frame .content-image { height: 280px; }
    .about-floating-stat { display: none; }
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-mosaic-featured {
        grid-column: span 1;
    }
    .hero-controls { gap: 12px; bottom: 24px; }
    .cta-contact-chip { font-size: 0.78rem; padding: 8px 14px; }
}
