:root {
    /* Colors extracted from logo: teal-blue (#1E7DB8), green (#3DAA35), aqua (#22C4B8) */
    --deep: #063040;
    --ocean: #0a4d62;
    --teal: #1E7DB8;
    --green: #3DAA35;
    --aqua: #22C4B8;
    --sky: #56d8f0;
    --foam: #d4f5f2;
    --lightgreen: #e8f8e6;
    --white: #f4fffe;
    --text: #0e1a20;
    --muted: #4a6870;
    --grad: linear-gradient(135deg, #1E7DB8, #22C4B8, #3DAA35);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}


/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 4%;
    background: #fff;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e5e5e5;
    transition: padding .3s;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.5);
}

.nav-logo-img {
    height: 70px;
    width: auto;
    display: block;
    cursor: pointer;
}



.nav-links {
    display: flex;
    gap: 0.8rem;
    list-style: none;
    align-items: center;
}



.nav-links a {
    position: relative;
    display: inline-block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.35s ease;
    letter-spacing: .04em;
    transition: color .3s;
    padding: 10px 18px;
    border-radius: 30px;
}


.nav-links a:hover {
    background: var(--grad);
    color: #fff;
}



.nav-cta {
    background: var(--grad);
    color: #fff;
    padding: .5rem 1.4rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(34, 196, 184, .3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(34, 196, 184, .45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all .3s;
}

.mob-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem 5%;
    z-index: 998;
    flex-direction: column;
    gap: .5rem;
    border-bottom: 1px solid #e5e5e5;
}

.mob-menu a {
    color: #333;
    text-decoration: none;
    padding: .7rem 0;
    border-bottom: 1px solid #eee;
    font-size: .95rem;
    display: block;
}

.mob-menu a:hover {
    color: #009688;
}

/* HERO */
#hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--deep) 0%, var(--ocean) 55%, #0b3f28 100%);
}

.hero-img-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/Hero_Img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1.03);
    filter: saturate(1.12) contrast(1.05) brightness(0.95);
}

.hero-img-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 31, 41, 0.82) 0%, rgba(3, 31, 41, 0.35) 45%, rgba(3, 31, 41, 0.16) 100%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 196, 184, 0.13) 0%, rgba(30, 125, 184, 0.06) 50%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulse 7s ease-in-out infinite;
    pointer-events: none;
}

/* Tablets */
@media (max-width: 991px) {
    #hero {
        min-height: 85vh;
    }

    .hero-img-bg {
        background-position: center center;
        background-size: cover;
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    #hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-img-bg {
        background-size: cover;
        background-position: center;
        transform: none;
    }

    .hero-img-bg::after {
        background: rgba(3, 31, 41, 0.55);
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero-img-bg {
        background-size: cover;
        background-position: 65% center;
        /* Adjust based on subject location */
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.water-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 110px;
    overflow: hidden;
}

.water-wave svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 5% 4rem;
    max-width: 680px;
}

.hero-logo-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    animation: fadeUp .8s ease both;
}

.hero-logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 18px rgba(0, 15, 15, 0.4));
}

.hero-tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #f5ffff;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: fadeUp .8s .1s ease both;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .16);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    color: #f8ffff;
    margin-bottom: 1.4rem;
    animation: fadeUp .8s .25s ease both;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .28);
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, #8fe9ff 0%, #3fd6cb 45%, #7ce77d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(244, 255, 254, 0.9);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 540px;
    animation: fadeUp .8s .4s ease both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .8s .55s ease both;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(34, 196, 184, .35);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 196, 184, .5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    transition: border-color .3s, background .3s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--aqua);
    background: rgba(34, 196, 184, .1);
}

@media (max-width: 480px) {

    .btn-primary,
    .btn-outline {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 250px;
    }
}

.hero-stats {
    position: absolute;
    right: 5%;
    bottom: 16%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeLeft .8s .8s ease both;
}

.stat-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 150px;
    border-top: 2px solid rgba(34, 196, 184, 0.7);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.stat-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(90deg, #8fe9ff 0%, #3fd6cb 45%, #7ce77d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stat-card span {
    font-size: .78rem;
    color: rgba(244, 255, 254, 0.92);
    font-weight: 600;
    letter-spacing: .02em;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* TICKER */
.ticker-wrap {
    background: var(--grad);
    padding: .55rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: tick 38s linear infinite;
}

@keyframes tick {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ticker span {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin: 0 2rem;
}

.ticker span::before {
    content: "\25C6 ";
    color: rgba(255, 255, 255, .5);
}

/* SECTIONS */
section {
    padding: 6rem 5%;
}

.section-label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: .75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 580px;
}

.center {
    text-align: center;
}

.center .section-sub {
    margin: 0 auto;
}

.divline {
    width: 50px;
    height: 3px;
    background: var(--grad);
    margin: 1rem 0 1.8rem;
    border-radius: 2px;
}

/* STATS BAR */
.statsbar {
    background: linear-gradient(90deg, var(--deep) 0%, var(--ocean) 50%, #0b3f28 100%);
    padding: 2.5rem 5%;
}

.statsbar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sbnum {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.sblbl {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-top: .3rem;
}

/* MISSION */
#mission {
    background: linear-gradient(180deg, var(--lightgreen) 0%, #fff 60%, var(--foam) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.mission-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 40px 80px rgba(6, 48, 64, .14);
}

.mission-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 48, 64, .35) 0%, transparent 60%);
}

.mission-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(6, 48, 64, .88);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: .85rem;
    border-left: 3px solid var(--aqua);
}

.commitment-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--foam);
    box-shadow: 0 2px 12px rgba(34, 196, 184, .07);
    transition: transform .3s, box-shadow .3s;
    cursor: default;
}

.commitment-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(34, 196, 184, .15);
}

.commit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.commit-text strong {
    display: block;
    font-size: .9rem;
    margin-bottom: .2rem;
    color: var(--deep);
}

.commit-text p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.65;
}

/* INDUSTRIES */
#industries {
    background: linear-gradient(135deg, #041b24 0%, #07374a 45%, #0a5561 100%);
    position: relative;
    overflow: hidden;
}

.ind-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/industries.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.28;
    transform: scale(1.03);
    filter: saturate(1.1) contrast(1.08) brightness(0.9);
}

.ind-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 24, 32, 0.9) 0%, rgba(2, 24, 32, 0.62) 45%, rgba(2, 24, 32, 0.28) 100%);
    pointer-events: none;
}

.ind-bg img {
    display: none;
}


/* Tablet */
@media (max-width: 991px) {
    .ind-bg {
        background-size: cover;
        background-position: center;
        transform: scale(1);
    }

    .ind-bg::after {
        background: rgba(2, 24, 32, 0.5);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ind-bg {
        background-size: cover;
        background-position: center;
        transform: none;
    }

    .ind-bg::after {
        background: rgba(2, 24, 32, 0.6);
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .ind-bg {
        background-size: cover;
        background-position: 65% center;
        /* Change to 35%, 50%, or 70% if needed */
    }
}

#industries .section-title {
    color: #f8ffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

#industries .section-label {
    color: #93f1ff;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

#industries .section-sub {
    color: rgba(248, 255, 255, 0.94);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.industry-card {
    border-radius: 20px;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transition: background .3s, transform .3s, border-color .3s, box-shadow .3s;
    cursor: default;
}

.industry-card:hover {
    background: rgba(34, 196, 184, 0.16);
    border-color: rgba(147, 241, 255, 0.45);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    transform: translateY(-6px);
}

.industry-emoji {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.industry-emoji img {
    height: 60px;
    width: 6nav-logo-img0px;
}

.industry-card h3 {
    color: #f8ffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.industry-card p {
    color: rgba(248, 255, 255, 0.86);
    font-size: .84rem;
    line-height: 1.6;
}

/* GALLERY */
#gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(6, 48, 64, .9));
    color: #fff;
    padding: 1.5rem 1rem .75rem;
    font-size: .85rem;
    font-weight: 600;
}

.gallery-full-img {
    display: none;
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(6, 48, 64, .12);
}

.gallery-full-img img {
    width: 100%;
    display: block;
}

.gallery-full-img.active {
    display: block;
    animation: fadeUp .4s ease;
}

/* SOLUTIONS */
#solutions {
    background: linear-gradient(180deg, #fff 0%, var(--foam) 100%);
}

.solutions-tabs {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin: 3rem 0 2rem;
}

.tab-btn {
    padding: .55rem 1.2rem;
    border-radius: 50px;
    border: 2px solid var(--foam);
    background: #fff;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    font-family: 'DM Sans', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(34, 196, 184, .3);
}

.solution-panel {
    display: none;
}

.solution-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    animation: fadeUp .5s ease;
}

.solution-panel-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(6, 48, 64, .12);
    aspect-ratio: 4/3;
}

.solution-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-features {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .875rem 1rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--foam);
    font-size: .88rem;
    line-height: 1.6;
}

.solution-features li::before {
    content: '✦';
    color: var(--teal);
    font-size: .7rem;
    margin-top: .3rem;
    flex-shrink: 0;
}

/* TECHNOLOGIES */
#technologies {
    background: #fff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.tech-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--foam);
    transition: transform .3s, box-shadow .3s;
    background: #fff;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(6, 48, 64, .1);
}

.tech-card-header {
    background: linear-gradient(135deg, var(--deep), var(--ocean));
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(34, 196, 184, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tech-card-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.tech-card-header p {
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
    margin-top: .2rem;
}

.tech-card-body {
    padding: 1.5rem;
}

.tech-tag {
    display: inline-block;
    background: var(--foam);
    color: var(--teal);
    font-size: .73rem;
    font-weight: 600;
    padding: .28rem .7rem;
    border-radius: 50px;
    margin: .25rem;
}

/* ENQUIRY FORM */
#enquiry {
    background: linear-gradient(135deg, var(--lightgreen) 0%, var(--foam) 100%);
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.enquiry-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--deep);
}

.enquiry-info p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.einfo-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.einfo-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--foam);
    box-shadow: 0 2px 10px rgba(34, 196, 184, .08);
}

.einfo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.einfo-txt h4 {
    font-size: .8rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .2rem;
}

.einfo-txt p {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.6;
}

.enquiry-form-box {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(6, 48, 64, .1);
    border: 1px solid var(--foam);
}

.enquiry-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep);
    margin-bottom: .5rem;
}

.enquiry-form-box p {
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #f8fffe;
    border: 1.5px solid var(--foam);
    color: var(--text);
    padding: .8rem 1rem;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(34, 196, 184, .12);
}

.form-group textarea {
    height: 110px;
    resize: vertical;
}

.form-group select option {
    background: #fff;
}

.form-submit {
    width: 100%;
    background: var(--grad);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    margin-top: .5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(34, 196, 184, .4);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--teal);
    font-size: 1.1rem;
    font-weight: 600;
    animation: fadeUp .5s ease;
}

.form-success span {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* CONTACT */
#contact {
    background: linear-gradient(135deg, var(--deep) 0%, var(--ocean) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 196, 184, .12) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

#contact .section-title {
    color: #fff;
}

#contact .section-label {
    color: var(--aqua);
}

#contact .section-sub {
    color: rgba(255, 255, 255, .7);
    margin: 1rem auto 2.5rem;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    color: #fff;
    text-align: center;
    min-width: 300px;
    backdrop-filter: blur(10px);
    transition: background .3s, transform .3s;
}

.contact-card:hover {
    background: rgba(34, 196, 184, .15);
    transform: translateY(-4px);
}

.contact-card .ci {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card strong {
    display: block;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .55;
    margin-bottom: .5rem;
}

.contact-card p {
    font-size: .95rem;
    font-weight: 600;
}

.map-card {
    padding: 0 !important;
    overflow: hidden;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* FOOTER */
footer {
    background: var(--deep);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 2.5rem 5%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    opacity: .9;
}

footer .foot-center {
    text-align: center;
    color: rgba(255, 255, 255, .3);
    font-size: .8rem;
    line-height: 1.8;
}

footer .foot-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

footer .foot-links a {
    color: rgba(255, 255, 255, .4);
    font-size: .8rem;
    text-decoration: none;
    transition: color .2s;
}

footer .foot-links a:hover {
    color: var(--aqua);
}

/* WHATSAPP */
#whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 998;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 1.7rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
    animation: waFloat 3s ease-in-out infinite;
    transition: transform .2s, box-shadow .2s;
}

#whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .6);
    animation: none;
}

@keyframes waFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.wa-tooltip {
    position: fixed;
    bottom: 5.2rem;
    right: 2rem;
    z-index: 997;
    background: var(--deep);
    color: #fff;
    padding: .45rem .9rem;
    border-radius: 8px;
    font-size: .78rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--deep);
    transform: rotate(45deg);
}

#whatsapp-btn:hover+.wa-tooltip {
    opacity: 1;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s, transform .7s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* RESPONSIVE */
@media(max-width:1000px) {

    .mission-grid,
    .solution-panel.active,
    .enquiry-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    footer .foot-links {
        justify-content: center;
    }

    .statsbar-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {

    .gallery-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .statsbar-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 0.70rem;
    }

    .nav-logo-img {
    height: 60px;
    }

    .hero-logo-img {
    height: 55px;
    }
}