/* ========== MODERN INDUSTRIAL DESIGN - HAKAM AL ABRI ========== */

:root {
    --color-primary: #FF5722;
    --color-primary-dark: #E64A19;
    --color-dark: #1a1a2e;
    --color-darker: #0f0f1a;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-overlay: rgba(26, 26, 46, 0.85);

    --font-heading: "Poppins", system-ui, -apple-system, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;

    --radius: 12px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--color-light);
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: rgba(255, 87, 34, 0.1);
    color: var(--color-primary);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header-center h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* ========== HEADER ========== */

.site-header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-dark);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:not(.btn):hover {
    color: var(--color-primary);
}

.main-nav a.active:not(.btn) {
    color: var(--color-primary);
}

.main-nav a.active:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

/* Mobile Menu Toggle */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* ========== BUTTONS ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

.btn-primary-nav {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.65rem 1.5rem;
}

.btn-primary-nav:hover {
    background: var(--color-primary-dark);
}

.btn-outline-white {
    border-color: var(--color-white);
    color: var(--color-white);
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* ========== HERO MODERN ========== */

.hero-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Slider */

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(15, 15, 26, 0.85) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-content {
    max-width: 700px;
    color: var(--color-white);
    margin-bottom: 3rem;
}

.hero-badge-top {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: rgba(255, 87, 34, 0.2);
    border: 1px solid rgba(255, 87, 34, 0.4);
    border-radius: 999px;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--color-white);
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Stats */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 700px;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== CORE VALUES ========== */

.core-values {
    background-color: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: center;
}

.values-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.values-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.exp-text {
    font-size: 0.9rem;
    line-height: 1.3;
}

.values-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.values-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Mission Vision Cards */

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.mv-card {
    background-color: var(--color-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-primary);
}

.mv-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.mv-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ========== SERVICES MODERN ========== */

.services-modern {
    background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-dark) 100%);
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card-modern {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.2);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.7) 100%);
}

.service-content {
    padding: 1.75rem 1.5rem;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== WORK PROCESS ========== */

.work-process {
    background-color: var(--color-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.process-step:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========== CLIENTS ========== */

.clients-section {
    background-color: var(--color-light);
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.client-badge {
    padding: 1rem 2rem;
    background-color: var(--color-white);
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--color-text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    color: var(--color-primary);
}

/* ========== CTA MODERN ========== */

.cta-modern {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

/* ========== FOOTER ========== */

.site-footer {
    background-color: var(--color-darker);
    color: rgba(255, 255, 255, 0.8);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    padding: 0.4rem 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.contact-info li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        max-width: 85%;
        height: calc(100vh - 80px);
        background-color: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .main-nav a.active::after {
        display: none;
    }

    .main-nav a:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .values-image img {
        height: 400px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(1200px, 100% - 2rem);
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero-modern {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .logo-title {
        font-size: 0.95rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-modern {
        padding: 4rem 0;
    }
}

/* CONTACT FORM STYLES */

/* ================== CONTACT FORM (UPGRADED) ================== */

.contact-form {
    background: #ffffff;
    border-radius: 22px;
    padding: 2rem 2rem 1.8rem;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
    /* max-width: 460px;
    margin-left: auto; */
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.contact-form .form-row {
    margin-bottom: 1rem;
}

/* Inputs, selects, textarea */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.92rem;
    font-family: var(--font-body);
    outline: none;
    background: #f8fafc;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        transform 0.08s ease;
}

.contact-form textarea {
    border-radius: 18px;
    min-height: 130px;
    resize: vertical;
}

/* Placeholder style */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
    font-size: 0.88rem;
}

/* Focus state */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.02),
        0 0 0 3px rgba(26, 76, 140, 0.22);
    transform: translateY(-1px);
}

/* Select specifically */

.contact-form select {
    border-radius: 999px;
    background-color: #f8fafc;
}

/* Submit button full width */

.contact-form .btn-large {
    width: 100%;
    justify-content: center;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    font-size: 0.98rem;
}

/* Leadership Cards */
.leader-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.leader-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 1rem;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Guided By Experience Section - 350px Tiles */
.leadership-tile-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.leadership-cards {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.leadership-cards .service-card-modern {
    width: 450px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.leadership-cards .service-content h3 {
    color: var(--color-dark);
}

.leadership-cards .service-content p {
    color: var(--color-text-light);
}

.leader-photo {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}