:root {
    --primary: #073e49;
    --primary-2: #0b5562;
    --primary-3: #062f37;
    --gold: #d4b062;
    --gold-2: #c39a42;
    --gold-soft: #edd8a2;
    --white: #f6f7f8;
    --text: #dce8eb;
    --text-dark: #17363d;
    --muted: #6f8a92;
    --bg-light: #f7f5f1;
    --bg-soft: #efe9e1;
    --line: rgba(255, 255, 255, 0.08);
    --line-dark: rgba(7, 62, 73, 0.08);
    --card-dark: rgba(255, 255, 255, 0.05);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 24px 70px rgba(0, 0, 0, 0.22);
    --transition: all 0.32s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #1d2e34;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HEADER */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 62, 73, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: 112px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: var(--white);
    font-size: 0.96rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--gold-soft);
}

.btn-nav {
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(212, 176, 98, 0.35);
    background: rgba(212, 176, 98, 0.08);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    border-radius: 999px;
    background: white;
}

/* HERO */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(7, 62, 73, 0.96), rgba(3, 25, 30, 0.96));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 176, 98, 0.16), transparent 28%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05), transparent 20%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 92%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 42px;
    align-items: center;
    padding: 72px 0 56px;
}

.hero-left {
    max-width: 640px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--gold-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2.6px;
}

.hero-left h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4.2vw, 4.1rem);
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.hero-description {
    color: var(--text);
    font-size: 1rem;
    max-width: 560px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    color: #102025;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    box-shadow: 0 18px 35px rgba(212, 176, 98, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(212, 176, 98, 0.32);
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-point {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-point strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.hero-point span {
    display: block;
    color: #99b1b8;
    font-size: 0.84rem;
    line-height: 1.45;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    width: 100%;
    max-width: 390px;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(8px);
}

.mini-tag {
    color: var(--gold-soft);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.hero-card h3 {
    color: var(--white);
    font-size: 1.65rem;
    line-height: 1.14;
    margin-bottom: 12px;
}

.hero-card p {
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.7;
}

.hero-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 22px 0;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--gold-soft);
    background: rgba(212, 176, 98, 0.1);
    border: 1px solid rgba(212, 176, 98, 0.16);
}

/* HIGHLIGHT */
.highlight-bar {
    position: relative;
    margin-top: -34px;
    z-index: 5;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.highlight-item {
    padding: 24px 22px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(7, 62, 73, 0.06);
}

.highlight-item h3 {
    color: var(--primary);
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.highlight-item p {
    color: #60757c;
    font-size: 0.93rem;
}

/* SECTIONS */
.section {
    padding: 105px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: linear-gradient(180deg, var(--primary), var(--primary-3));
}

.process-section {
    background: linear-gradient(180deg, #f2eee8, #ebe6df);
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading.split {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: end;
}

.section-heading.center {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 14px;
    color: #536f77;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.section-tag.gold {
    color: var(--gold-soft);
}

.section-heading h2 {
    color: var(--text-dark);
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.section-heading p,
.section-intro {
    color: #60757c;
    font-size: 0.98rem;
}

.section-heading.light h2,
.section-heading.light p,
.section-heading.light .section-tag {
    color: var(--white);
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.about-content {
    display: grid;
    gap: 18px;
}

.about-content p {
    color: #486067;
    font-size: 1rem;
}

.about-values {
    display: grid;
    gap: 18px;
}

.value-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(7, 62, 73, 0.06);
}

.value-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 176, 98, 0.15);
    color: #8a6825;
    font-weight: 800;
    margin-bottom: 14px;
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.value-card p {
    color: #60757c;
    font-size: 0.96rem;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 260px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
}

.service-top {
    margin-bottom: 18px;
}

.service-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 16px;
    font-weight: 800;
    color: var(--gold-soft);
    background: rgba(212, 176, 98, 0.14);
}

.service-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1.15;
}

.service-card p {
    color: #c9d8dc;
    font-size: 0.95rem;
}

/* SEGMENTS */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.segment-item {
    padding: 22px 18px;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f5f7f8);
    border: 1px solid rgba(7, 62, 73, 0.07);
    box-shadow: var(--shadow-soft);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    transition: var(--transition);
}

.segment-item:hover {
    transform: translateY(-4px);
}

/* TIMELINE */
.timeline {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(7, 62, 73, 0.06);
    box-shadow: var(--shadow-soft);
    align-items: start;
}

.timeline-item span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: var(--gold-soft);
    font-weight: 800;
    font-size: 0.96rem;
}

.timeline-item h3 {
    color: var(--primary);
    font-size: 1.28rem;
    margin-bottom: 8px;
}

.timeline-item p {
    color: #5f757c;
    font-size: 0.96rem;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-box {
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(7, 62, 73, 0.07);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #5f757c;
    font-size: 0.95rem;
}

/* CTA */
.cta-section {
    padding: 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light) 42%, var(--primary) 42%, var(--primary-3) 100%);
}

.cta-box {
    background: linear-gradient(135deg, rgba(7, 62, 73, 0.96), rgba(11, 85, 98, 0.94));
    border-radius: 30px;
    padding: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-text h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.2vw, 2.7rem);
    line-height: 1.08;
    margin-bottom: 12px;
}

.cta-text p {
    color: #d7e4e7;
    max-width: 760px;
    font-size: 0.97rem;
}

/* CONTACT */
.contact-section {
    padding-top: 105px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.contact-card,
.contact-form {
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-card h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-list p {
    color: #d7e4e7;
    font-size: 0.98rem;
}

.form-group {
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: 15px;
    padding: 16px 18px;
    outline: none;
    font-size: 0.96rem;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #acc0c6;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(212, 176, 98, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.btn-full {
    width: 100%;
    margin-top: 6px;
}

.form-message {
    margin-top: 12px;
    color: var(--gold-soft);
    font-size: 0.93rem;
}

/* FOOTER */
.footer {
    background: #041f24;
    padding: 40px 0 28px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer img {
    width: 90px;
}

.footer p {
    color: #9ab1b7;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .hero-content,
    .about-grid,
    .contact-grid,
    .section-heading.split,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-grid,
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-right {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .nav {
        position: absolute;
        top: 82px;
        right: 4%;
        width: min(320px, 92vw);
        background: rgba(7, 62, 73, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        box-shadow: var(--shadow-strong);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-points,
    .services-grid,
    .features-grid,
    .highlight-grid,
    .segments-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 58px 0 72px;
    }

    .hero-left h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.04;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 0.96rem;
    }

    .brand img {
        width: 96px;
    }

    .cta-box {
        padding: 30px 24px;
    }

    .section {
        padding: 88px 0;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}