:root {
    --navy: #2A4759;
    --navy-dark: #1a2d3a;
    --slate: #2A4759;
    --steel: #4a4a4a;
    --text-dark: #1d1d1d;
    --text-muted: #6f675f;
    --accent: #2A4759;
    --accent-soft: #d4e1e8;
    --accent-alt: #1a3545;
    --button-primary: #F79B72;
    --button-hover: #e8754e;
    --white: #ffffff;
    --bg: #EEEEEE;
    --bg-light: #DDDDDD;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg);
}

p {
    font-size: clamp(1rem, 1.5vw + 0.6rem, 1.2rem);
    line-height: clamp(1.7, 1.2 + 1vw, 1.9);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Zodiak', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(22, 21, 19, 0.95);
    backdrop-filter: blur(18px);
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(22, 21, 19, 0.98);
    box-shadow: 0 12px 30px rgba(10, 9, 8, 0.45);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    height: 42px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.6px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.95), rgba(24, 24, 24, 0.9)), url('assets/_ABH0079.JPG') center/cover fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 70px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 70px);
}

.hero-content {
    max-width: 720px;
    padding-left: clamp(10px, 4vw, 80px);
}

.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button,
.secondary-button {
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.cta-button {
    background: var(--button-primary);
    color: var(--white);
    box-shadow: 0 18px 35px rgba(247, 155, 114, 0.25);
}

.secondary-button {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--button-hover);
}

.secondary-button:hover {
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.hero-aside {
    align-self: stretch;
    justify-self: end;
    padding: 30px;
    border-radius: 24px;
    background: rgba(22, 21, 19, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    max-width: 360px;
    margin-right: clamp(10px, 4vw, 60px);
}

.hero-aside-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--button-primary);
    margin-bottom: 14px;
    font-weight: 600;
}

.stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 16px 20px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 120px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffd4a3;
    font-weight: 600;
}

.stat-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--button-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--slate);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* About */
.about {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.about .section-title {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.about .section-description {
    color: #ffffff;
    opacity: 0.9;
}

.about-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
}

.about-story p {
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.about-highlight {
    margin-top: 1.5rem;
    padding: 24px;
    border-radius: 16px;
    background: rgba(242, 202, 44, 0.08);
}

.about-highlight h3 {
    margin-bottom: 0.6rem;
}

.about-highlight ul {
    margin-top: 1rem;
    list-style: disc;
    padding-left: 20px;
    color: #f5e7c3;
}

.about-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.about-card--wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .about-card--wide {
        grid-column: span 1;
    }
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(12px);
}

.about-card h3 {
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.about-card ul {
    list-style: disc;
    padding-left: 20px;
    color: #f5e1ad;
}

.values-panel {
    margin-top: 60px;
}

.values-panel h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: clamp(2.4rem, 3vw, 3.2rem);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 24px;
    min-height: 160px;
}

.value-card h4 {
    margin-bottom: 0.75rem;
    color: var(--button-primary);
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: #f8f1da;
    line-height: 1.7;
}

/* Why choose */
.why-choose-us {
    padding: 110px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(22, 21, 19, 0.08);
    background: #fffdf3;
    text-align: left;
    box-shadow: 0 18px 40px rgba(22, 21, 19, 0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--button-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Services */
.services {
    padding: 110px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(22, 21, 19, 0.12);
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
    transition: transform 0.4s ease;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin-bottom: 0.75rem;
    color: var(--slate);
}

.service-content ul {
    margin-top: 0.8rem;
    list-style: disc;
    padding-left: 18px;
    color: var(--text-muted);
}

/* Infrastructure */
.infrastructure {
    padding: 110px 0;
    background: var(--white);
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.infra-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(10, 24, 75, 0.15);
    margin: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.infra-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.infra-card figcaption {
    padding: 20px;
    background: var(--navy);
    color: var(--white);
    margin-top: -1px;
}

/* Quality */
.quality {
    padding: 110px 0;
    background: var(--navy-dark);
    color: var(--white);
}

.quality .section-title {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.quality .section-description {
    color: #ffffff;
    opacity: 0.9;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quality-grid article {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 28px;
}

.quality-grid ul {
    margin-top: 0.8rem;
    list-style: disc;
    padding-left: 18px;
    color: #dce3ff;
}

blockquote {
    margin-top: 1rem;
    padding-left: 16px;
    border-left: 4px solid var(--accent);
    color: #fce5bf;
    font-style: italic;
}

/* Clients */
.clients {
    padding: 110px 0;
    background: var(--bg);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.client-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #e6dcb8;
    box-shadow: 0 20px 45px rgba(22, 21, 19, 0.1);
}

.client-card ul {
    margin-top: 0.7rem;
    list-style: disc;
    padding-left: 18px;
    color: var(--text-muted);
}


/* Insights */
.insights {
    padding: 110px 0;
    background: var(--white);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.insight-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e6dcb8;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.insight-card ul {
    margin-top: 0.8rem;
    list-style: disc;
    padding-left: 18px;
    color: var(--text-muted);
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--button-primary);
    text-decoration: none;
    font-weight: 600;
}

.insight-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.insight-actions .cta-button,
.insight-actions .secondary-button {
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Team */
.team {
    padding: 110px 0;
    background: var(--slate);
    color: var(--white);
}

.team .section-title {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.team .section-description {
    color: #ffffff;
    opacity: 0.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.member-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: rgba(242, 202, 44, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
}

.member-role {
    color: var(--button-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-summary {
    color: #f1e8c7;
    font-size: 0.95rem;
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-hero {
    min-height: 380px;
    background: linear-gradient(120deg, rgba(50, 50, 50, 0.9), rgba(24, 24, 24, 0.85)), url('assets/_ABH0148.JPG') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.contact-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 80px 20px;
}

.contact-info {
    padding: 90px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.contact-card,
.contact-form-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e6dcb8;
}

.contact-info .contact-card p {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.contact-info .contact-card {
    text-align: center;
}

.contact-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-alt);
}

.contact-form {
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d8c9a3;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--button-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 155, 114, 0.2);
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #c75146;
    box-shadow: 0 0 0 3px rgba(199, 81, 70, 0.2);
}

.form-group.has-error label {
    color: #c75146;
}

.form-group.honeypot {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.submit-button {
    width: 100%;
    border: none;
    background: var(--button-primary);
    color: var(--white);
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--button-hover);
}

.submit-button.is-loading {
    background: #d47a55;
    cursor: wait;
}

.form-feedback {
    min-height: 24px;
    margin: 6px 0 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.form-feedback.success {
    color: #20845a;
}

.form-feedback.error {
    color: #c75146;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 38px;
}

.footer-bottom {
    color: #9db0ff;
    font-size: 0.9rem;
}

.will-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: auto;
        width: 100%;
        flex-direction: column;
        background: var(--navy);
        padding: 24px;
        gap: 18px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        z-index: 999;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }

    .services-grid,
    .infra-grid,
    .quality-grid,
    .clients-grid,
    .insights-grid,
    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: flex-start;
        min-height: auto;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-aside {
        padding: 24px;
        margin-right: 0;
        max-width: 420px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-content {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .stat {
        min-height: auto;
        padding: 14px 16px;
    }

    .value-card {
        min-height: auto;
    }

    .container {
        padding: 0 16px;
    }
}
