


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e2f4e;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* soft color palette */
:root {
    --primary: #08d7c9;
    /* elegant blue */
    --primary-light: #eef5fa;
    --soft-gray: #f9fbfd;
    --white: #ffffff;
    --dark: #1e2f4e;
    --shadow-sm: 0 10px 30px -10px rgba(0, 20, 40, 0.05);
    --shadow-hover: 0 20px 35px -12px rgba(0, 44, 70, 0.1);
}

/* navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.25s ease, box-shadow 0.2s, padding 0.2s;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 18px rgba(42, 92, 126, 0.06);
    padding: 12px 32px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.call-btn {
    background: var(--primary);
    color: white !important;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.call-btn i {
    font-size: 0.9rem;
}

.call-btn:hover {
    background: #1f4a66;
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.call-btn:hover::after {
    width: 0;
}

/* no underline */

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

/* mobile menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.05);
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-link {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-call {
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 50px;
    text-align: center;
    margin-top: 20px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
    background: #1f4a66;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* stat counter */
.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* sections */
section {
    padding: 90px 0;
}

.bg-soft {
    background-color: var(--soft-gray);
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    background: linear-gradient(180deg, #0a1628 0%, #0e1c2c 50%, #0d1929 100%);
    color: #e2ecf5;
    padding: 0 0 0;
    overflow: hidden;
}

.footer-accent {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.9;
}

.footer .container {
    padding-top: 56px;
    padding-bottom: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.footer-logo::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 12px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
    line-height: 1.5;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #b8d4e8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-item:hover {
    color: #fff;
}

.footer-contact-item:hover i {
    color: var(--primary);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #0e1c2c !important;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(8, 215, 201, 0.3);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(8, 215, 201, 0.4);
    color: #0e1c2c !important;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8d4e8;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 14px;
}

.footer-links a:hover::before {
    width: 8px;
    left: 0;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .footer-brand {
        max-width: none;
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 40px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* map */
.map-container {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* service areas grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px 20px;
    list-style: none;
    margin-top: 16px;
}

.areas-grid li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(42, 92, 126, 0.1);
    color: #2c3e4f;
    font-weight: 450;
}

/* FAQ accordion */
.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 8px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: #4a5f73;
    padding: 0 8px 0 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* split layouts */
.split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 16px 20px;
    margin-bottom: 8px;
    background: white;
    border-radius: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
}

.service-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.service-list li:hover {
    background: var(--primary-light);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.image-composition {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.img-round {
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* responsive */
@media (max-width: 1024px) {
    .split-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .navbar {
        padding: 16px 24px;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .navbar .call-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    section {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* subtle shapes */
.shape-bg {
    position: relative;
}

.shape-bg::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -20px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 70% 30%, rgba(42, 92, 126, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

img {
    max-width: 100%;
    display: block;
}

/* ========== HERO SECTION V2 - Unique stacked (content block + image showcase) ========== */
.hero-v2 {
    padding: 0;
    overflow: hidden;
}

.hero-v2-content {
    background: linear-gradient(165deg, #f0f9fc 0%, #e8f6f9 35%, #ffffff 100%);
    padding: 80px 0 64px;
    text-align: center;
    position: relative;
}

.hero-v2-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
}

.hero-v2-inner {
    max-width: 680px;
    margin: 0 auto;
}

.hero-v2-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(8, 215, 201, 0.12);
    border: 1px solid rgba(8, 215, 201, 0.35);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-v2-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--dark);
    letter-spacing: -0.03em;
}

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

.hero-v2-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), rgba(8, 215, 201, 0.4));
    border-radius: 3px;
}

.hero-v2-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    margin-bottom: 32px;
    color: #3d5163;
}

.hero-v2-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.btn-hero-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #0e1c2c !important;
    padding: 16px 32px;
    font-size: 1rem;
    border: none;
    box-shadow: 0 6px 24px rgba(8, 215, 201, 0.35);
}

.btn-hero-v2:hover {
    background: #06b8ab;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(8, 215, 201, 0.4);
}

.btn-hero-v2-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dark) !important;
    border: 2px solid var(--primary);
    padding: 16px 28px;
}

.btn-hero-v2-outline:hover {
    background: rgba(8, 215, 201, 0.1);
    color: var(--primary) !important;
    transform: translateY(-3px);
}

.hero-v2-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
}

.hero-v2-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(30, 47, 78, 0.06);
    border: 1px solid rgba(8, 215, 201, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-v2-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(8, 215, 201, 0.12);
}

.hero-v2-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.hero-v2-stat-txt {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5a6f82;
}

/* Image showcase - distinct panel below content */
.hero-v2-showcase {
    padding: 0 24px 60px;
}

.hero-v2-image-wrap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(30, 47, 78, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.hero-v2-img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 320px;
    object-fit: cover;
}

.hero-v2-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), rgba(8, 215, 201, 0.5));
}

@media (max-width: 768px) {
    .hero-v2-content {
        padding: 60px 0 48px;
    }

    .hero-v2-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
        letter-spacing: 0.1em;
    }

    .hero-v2-title {
        font-size: 2.1rem;
    }

    .hero-v2-subtitle {
        font-size: 1rem;
    }

    .hero-v2-cta {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .hero-v2-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-v2-stats {
        gap: 10px;
    }

    .hero-v2-stat {
        min-width: calc(50% - 10px);
        padding: 12px 14px;
    }

    .hero-v2-stat-num {
        font-size: 1.35rem;
    }

    .hero-v2-showcase {
        padding: 0 16px 48px;
    }

    .hero-v2-image-wrap {
        border-radius: 20px;
    }

    .hero-v2-img {
        min-height: 260px;
    }
}

.split-2 {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.service-main-heading {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #2a4858;
    line-height: 1.6;
}

.service-image {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
}

.service-tabs ul {
    list-style: none;
    padding: 0;
}

.service-tab {
    padding: 14px 18px;
    margin-bottom: 12px;
    cursor: pointer;
    border-radius: 10px;
    background: #f3f6f9;
    transition: 0.3s ease;
}

.service-tab i {
    margin-right: 10px;
}

.service-tab:hover {
    background: var(--primary);
    color: #fff;
}

.service-tab.active {
    background: var(--primary);
    color: #fff;
}



.hover-lift {
    transition: all 0.25s;
}


.split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .split-2 {
        grid-template-columns: 1fr;
    }
}