
/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary: #1a2a6c;
    --primary-light: #2a3f8f;
    --secondary: #c9a84c;
    --secondary-light: #e8c84a;
    --dark: #0a0a1a;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --text: #1f2937;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Typography
   ============================================ */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    margin-top: 30px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: #b89a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 42, 108, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-text {
    background: transparent;
    color: var(--primary);
    padding: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.btn-text:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.sticky {
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo img {
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.language-switcher a {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.language-switcher a.active {
    color: var(--secondary);
}

.language-switcher span {
    color: var(--gray);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    min-height: 100vh;
}

.hero-top {
    background: #5a728d;
    padding: 1.2rem 0;
    text-align: center;
    flex-shrink: 0;
    position: relative;   /* Tambahkan */
    z-index: 5;           /* Lebih tinggi dari gambar */    
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

/* ---------- BAGIAN TENGAH (GAMBAR) ---------- */
.hero-image-wrapper {
    width: 100%;
    flex: 0 0 auto;
    min-height: 300px;
    overflow: hidden;
    background: var(--light-gray);
}

.hero-image-wrapper .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ============================================
   POTONG GAMBAR HANYA UNTUK DESKTOP
   ============================================ */
@media (min-width: 769px) {
    .hero-image-wrapper {
        margin-top: -145px;    /* potong bagian atas */
        margin-bottom: -145px; /* potong bagian bawah */
    }

    .hero-image-wrapper .hero-image {
        height: calc(100% + 80px); /* tambah tinggi = 2x margin */
        margin-top: -40px;        /* geser ke atas agar potongan merata */
    }
}

.hero-bottom {
    background: var(--white);
    padding: 2rem 0 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.hero-bottom-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-bottom-content .btn-large {
    margin-bottom: 2.5rem;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--secondary);
}

.trust-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.trust-item small {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
    color: var(--gray);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-top {
        padding: 0.8rem 0;
    }
    .header {
        background-color: transparent !important;
    }
    
.logo img {
    height: 35px;
    width: auto;
    padding-top: 10px;
}
.language-switcher a {
    color: white;
}
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .hero-image-wrapper {
        min-height: 220px;
        height: 45vh;
        max-height: 380px;
        flex: 0 0 auto;
        margin: 0;
    }
    .hero-image-wrapper .hero-image {
        object-fit: cover;
        object-position: center;
    }
    .hero-bottom {
        padding: 1.5rem 0 2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .trust-bar {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-top {
        padding: 0.6rem 0;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-image-wrapper {
        min-height: 180px;
        height: 40vh;
        max-height: 300px;
    }
    .hero-bottom {
        padding: 1rem 0 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    padding-top: 100px; /* Beri ruang untuk grid yang overlap */
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content .btn {
    margin-top: 1rem;
}

/* ============================================
   CORE SOLUTIONS - GRID 2 KOLOM + ICON KIRI
   ============================================ */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.solutions-grid .solution-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.solutions-grid .solution-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Gambar */
.solutions-grid .solution-image {
    height: 200px;
    overflow: hidden;
}

.solutions-grid .solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solutions-grid .solution-card:hover .solution-image img {
    transform: scale(1.05);
}

/* ---------- KONTEN CARD ---------- */
.solutions-grid .solution-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* HEADER: Icon + Title sejajar */
.solution-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/* ICON - kecil dan di kiri */
.solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 1.2rem;
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.solution-card:hover .solution-icon {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

/* TITLE */
.solutions-grid .solution-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

/* DESKRIPSI */
.solutions-grid .solution-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

/* KEYWORDS */
.solution-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.solution-keywords .keyword {
    background: var(--light-gray);
    color: var(--primary);
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 600;
}

/* BUTTON */
.solutions-grid .solution-content .btn-text {
    align-self: flex-start;
    margin-top: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
    }

    .solutions-grid .solution-content h3 {
        font-size: 1rem;
    }
}

/* ============================================
   Industries Section
   ============================================ */
.industries-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.industry-front {
    padding: 1.5rem;
    text-align: center;
}

.industry-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.industry-front h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.industry-expand {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    background: #fafafa;
}

.industry-card.active .industry-expand {
    display: block;
}

.expand-item {
    margin-bottom: 1rem;
}

.expand-item:last-child {
    margin-bottom: 0;
}

.expand-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.expand-item h4 i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.expand-item p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================================
   Projects Section
   ============================================ */
.projects-section {
    padding: 5rem 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 1rem 1.25rem 1.25rem;
    background: var(--white);
}

.project-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.project-info p {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Project Lightbox */
.project-card a {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.project-card a .project-image {
    position: relative;
    overflow: hidden;
}

.project-card a .project-image::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #ffffff;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.project-card a:hover .project-image::after {
    transform: translate(-50%, -50%) scale(1);
}

.project-card a .project-image img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card a:hover .project-image img {
    transform: scale(1.1);
}

.project-card a .project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.project-card a:hover .project-image::before {
    opacity: 1;
}

/* ============================================
   Why ATL Section
   ============================================ */
.why-atl-section {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
}

.why-atl-section .section-title {
    color: var(--white);
}

.why-atl-section .section-title::after {
    background: var(--secondary);
}

.why-atl-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(26, 42, 108, 0.02);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding-right: 1rem;
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    transition: var(--transition);
}

.faq-toggle i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--secondary);
}

.faq-item.active .faq-toggle i {
    color: var(--white);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--gray);
}

/* ============================================
   SEO Content Section
   ============================================ */
.seo-content-section {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.seo-content .section-title {
    text-align: left;
}

.seo-content .section-title::after {
    margin: 0.5rem 0 0;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.seo-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.seo-item p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   Inquiry Form Section
   ============================================ */
.inquiry-form-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.inquiry-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 42, 108, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.checkbox-group label:hover {
    background: var(--light-gray);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ============================================
   Thank You Page
   ============================================ */
.thankyou-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem;
    background: var(--light-gray);
}

.thankyou-content {
    text-align: center;
    max-width: 700px;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.thankyou-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thankyou-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.thankyou-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.thankyou-info p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-company p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-contact h4,
.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact p i {
    width: 20px;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    color: var(--white);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ============================================
   TYPED.JS
   ============================================ */
.typed-text {
    color: #c9a84c;
    font-weight: 800;
}

.typed-cursor {
    display: none !important;
}

/* ============================================
   INDUSTRY MODAL
   ============================================ */
.industry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    backdrop-filter: blur(8px);
    /* Sembunyikan scroll bar di modal overlay */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.industry-modal::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.industry-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    animation: modalIn 0.35s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    /* Sembunyikan scroll bar di content modal */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.industry-modal-content::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

/* Animasi modal */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


@keyframes modalIn {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(25px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.industry-modal-content::-webkit-scrollbar {
    width: 6px;
}

.industry-modal-content::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.industry-modal-content::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

.industry-modal-close {
    position: sticky;
    top: 0;
    float: right;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    line-height: 1;
    z-index: 10;
    padding: 5px 10px;
    border-radius: 50%;
}

.industry-modal-close:hover {
    color: var(--dark);
    background: var(--light-gray);
    transform: rotate(90deg);
}

.industry-modal-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.industry-modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.industry-modal-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.modal-section h4 i {
    margin-right: 0.5rem;
    color: var(--secondary);
    width: 20px;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-section ul li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.modal-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.modal-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.75rem;
}

.modal-project-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.modal-project-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.modal-project-image {
    height: 140px;
    overflow: hidden;
    background: var(--light-gray);
}

.modal-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.modal-project-item:hover .modal-project-image img {
    transform: scale(1.05);
}

.modal-project-name {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    line-height: 1.3;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .industry-modal {
        padding: 30px;
    }
    .industry-modal-content {
        padding: 1.5rem !important;
        max-height: 95vh;
        border-radius: 20px;
        padding-top: 1.5rem !important;
    }
    .industry-modal-title {
        font-size: 1.4rem;
    }
    .industry-modal-icon {
        font-size: 2rem;
    }
    .modal-projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .modal-project-image {
        height: 100px;
    }
    .modal-project-name {
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
        min-height: 36px;
    }
    .modal-section ul li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .industry-modal-content {
        padding: 1rem;
    }
    .modal-projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .modal-project-image {
        height: 80px;
    }
    .modal-project-name {
        font-size: 0.65rem;
        padding: 0.3rem 0.4rem;
        min-height: 32px;
    }
}

/* ============================================
   ANOTASI GAMBAR
   ============================================ */
.annotation-point {
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.annotation-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #c9a84c;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.annotation-point:hover .annotation-number {
    transform: scale(1.15);
    background: #b89a3a;
}

.annotation-line {
    position: absolute;
    top: 50%;
    height: 2px;
    border-top: 2px dashed #c9a84c;
    transform: translateY(-50%);
    z-index: 1;
    width: 50px;
}

.annotation-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 3;
    opacity: 1;
    transition: background 0.3s ease, transform 0.3s ease;
}

.annotation-point:hover .annotation-text {
    background: #c9a84c;
    color: #1a2a6c;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.annotation-right .annotation-line {
    left: 100%;
}
.annotation-right .annotation-text {
    left: calc(100% + 50px + 8px);
}

.annotation-left .annotation-line {
    left: auto;
    right: 100%;
}
.annotation-left .annotation-text {
    left: auto;
    right: calc(100% + 50px + 8px);
}

@media (max-width: 768px) {
    .annotation-point {
        display: none !important;
    }
}

/* ============================================
   LEGEND
   ============================================ */
.annotation-legend {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem 1.5rem;
    justify-items: start;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #1f2937;
    font-weight: 500;
    white-space: nowrap;
}

.legend-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #c9a84c;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .annotation-legend {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem 1rem;
        padding: 0.75rem 1rem;
    }
    .legend-item {
        font-size: 0.75rem;
    }
    .legend-number {
        width: 22px;
        height: 22px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .annotation-legend {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    .legend-item {
        font-size: 0.7rem;
    }
    .legend-number {
        width: 20px;
        height: 20px;
        font-size: 0.55rem;
    }
}


/* ============================================
   HERO - 3 KOLOM: TEXT | IMAGE | INDICATORS
   ============================================ */

.hero-three-col {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    padding-top: 50px;
    background: #0e2a46;
}

/* ---------- KOLOM KIRI (TEKS) ---------- */
.hero-three-col .hero-left {
    flex: 0 0 43%;
    max-width: 43%;
    display: flex;
    align-items: center;
    padding: 3rem 2rem 3rem 4rem;
    background: #0e2a46;
}

.hero-three-col .hero-text {
    max-width: 500px;
}

.hero-three-col .hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-three-col .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-three-col .hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-left-text .hero-buttons .btn {
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

.hero-three-col .btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.hero-three-col .btn-outline:hover {
    background: #ffffff;
    color: #1a2a6c;
    transform: translateY(-2px);
}

/* ---------- KOLOM TENGAH (GAMBAR) ---------- */
.hero-three-col .hero-center {
    flex: 1;
    min-height: 100vh;
    overflow: hidden;
    background: #0e2a46;    
}

.hero-three-col .hero-center .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- KOLOM KANAN (INDIKATOR) ---------- */
.hero-three-col .hero-right {
    flex: 0 0 25%; /* atau 30%, sesuaikan */
    max-width: 20%;
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    background: #0e2a46;
    backdrop-filter: blur(4px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-three-col .hero-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
}

.hero-three-col .indicator-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.hero-three-col .indicator-item:hover {
    color: #ffffff;
    background: rgba(201, 168, 76, 0.1);
    border-left-color: #c9a84c;
}

.hero-three-col .indicator-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-three-col .indicator-item:hover .indicator-number {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #ffffff;
}

.hero-three-col .indicator-label {
    font-size: 0.8rem;
    line-height: 1.3;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-three-col .hero-left {
        flex: 0 0 45%;
        max-width: 45%;
        padding: 2rem 1.5rem 2rem 2rem;
    }
    .hero-three-col .hero-title {
        font-size: 2.2rem;
    }
    .hero-three-col .hero-right {
        flex: 0 0 30%;
        max-width: 30%;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-three-col {
        flex-direction: column;
        min-height: auto;
        padding-top: 80px;
    }
    .hero-three-col .hero-left {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        order: 1;
    }
    .hero-three-col .hero-center {
        min-height: 50vh;
        order: 2;
    }
    .hero-three-col .hero-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 1.5rem;
        order: 3;
        border-left: none;
        color:#b89a3a;
        /* border-top: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(0, 0, 0, 0.8); */
    }
    .hero-three-col .hero-indicators {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 1rem;
    }
    .hero-three-col .indicator-item {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
        font-weight: bold;
    }
    .hero-three-col .indicator-number {
        width: 26px;
        height: 26px;
        font-size: 0.55rem;
        color:#b89a3a;
    }
    .hero-three-col .hero-title {
        font-size: 1.8rem;
    }
    .hero-three-col .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-three-col .btn-outline {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-three-col .hero-title {
        font-size: 1.4rem;
    }
    .hero-three-col .hero-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.8rem;
    }
    .hero-three-col .hero-description {
        font-size: 0.9rem;
    }
    .hero-three-col .hero-indicators {
        grid-template-columns: 1fr 1fr;
        gap: 0.2rem 0.6rem;
    }
    .hero-three-col .indicator-item {
        font-size: 0.65rem;
        padding: 0.1rem 0.2rem;
    }
    .hero-three-col .indicator-number {
        width: 22px;
        height: 22px;
        font-size: 0.5rem;
    }
    .hero-three-col .hero-left {
        padding: 1.5rem 1rem;
    }
    .hero-three-col .hero-center {
        min-height: 40vh;
    }
    .hero-three-col .hero-right {
        padding: 1rem;
    }
}


/* ============================================
   PERKECIL KOLOM KANAN (INDIKATOR)
   ============================================ */

/* Batasi lebar maksimum kolom kanan */
.hero-indicators-wrapper {
    max-width: 220px; /* sesuaikan, misal 200px atau 180px */
    flex-shrink: 0;
}

/* Perkecil font dan padding indikator */
.indicator-link {
    font-size: 0.65rem;
    padding: 0.05rem 0;
    gap: 0.25rem;
}

.indicator-number {
    width: 18px;
    height: 18px;
    font-size: 0.45rem;
    border-width: 1px;
}

/* Perkecil jarak antar indikator */
.hero-solution-indicators {
    gap: 0.1rem 0;
}

/* ============================================
   HERO - BUTTONS SIZE
   ============================================ */

.hero-left-text .hero-buttons .btn {
    padding: 0.3rem 1rem;
    font-size: 0.45rem;    
    border-radius: 20px;
}


/* ============================================
   ANOTASI - GARIS PATAH 90 DERAJAT
   ============================================ */

.annotation-elbow {
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

/* Angka tetap di titik */
.annotation-elbow .annotation-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #c9a84c;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Teks anotasi - di ujung garis */
.annotation-elbow .annotation-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 3;
    opacity: 1;
    transition: background 0.3s ease;
}

/* ---------- Garis Patah (Elbow Line) ---------- */
.annotation-elbow::before,
.annotation-elbow::after {
    content: '';
    position: absolute;
    background: #c9a84c;
    opacity: 0.8;
    z-index: 1;
}


/* ============================================
   ANOTASI - GARIS DENGAN VARIABLE
   ============================================ */

.hero-image-wrapper {
    position: relative;
}

.annotation-dot {
    position: absolute;
    z-index: 10;
    width: 12px;
    height: 12px;
    background: #c9a84c;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transform: translate(-50%, -50%);
}

/* GARIS DASAR dengan variable */
.annotation-dot::before {
    content: '';
    position: absolute;
    background: #c9a84c;
    height: 2px;
    width: var(--h-width, 50px);  /* default 50px */
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.annotation-dot::after {
    content: '';
    position: absolute;
    background: #c9a84c;
    width: 2px;
    height: var(--h-height, 35px); /* default 35px */
    opacity: 1;
}

/* ---------- ARAH KANAN-BAWAH ---------- */
.elbow-right-down::before {
    left: 100%;
}
.elbow-right-down::after {
    left: calc(100% + var(--h-width, 50px));
    top: 50%;
    transform: translateY(0);
}

/* ---------- ARAH KANAN-ATAS ---------- */
.elbow-right-up::before {
    left: 100%;
}
.elbow-right-up::after {
    left: calc(100% + var(--h-width, 50px));
    top: 50%;
    transform: translateY(-100%);
}

/* ---------- ARAH KIRI-BAWAH ---------- */
.elbow-left-down::before {
    right: 100%;
    left: auto;
}
.elbow-left-down::after {
    right: calc(100% + var(--h-width, 50px));
    left: auto;
    top: 50%;
    transform: translateY(0);
}

/* ---------- ARAH KIRI-ATAS ---------- */
.elbow-left-up::before {
    right: 100%;
    left: auto;
}
.elbow-left-up::after {
    right: calc(100% + var(--h-width, 50px));
    left: auto;
    top: 50%;
    transform: translateY(-100%);
}


/* ============================================
   HERO SOLUTIONS GRID - DI TENGAH
   ============================================ */
.hero-solutions-grid {
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 5;
    margin-top: -30px; /* Naik ke atas menutupi hero */
    margin-bottom: -80px; /* Turun ke bawah menutupi about */
}

.hero-solutions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Background gradient: Atas Biru, Bawah Abu/Putih */
.hero-solutions-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        #0e2a46 0%,
        #0e2a46 40%,
        #f8f9fa 60%,
        #f8f9fa 100%
    );
    z-index: 0;
    pointer-events: none;
    border-radius: 0;
}

/* Efek transisi halus */
.hero-solutions-grid::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(
        to bottom,
        rgba(14, 42, 70, 0.2),
        rgba(248, 249, 250, 0.2)
    );
    z-index: 0;
    pointer-events: none;
}

.hero-solutions-grid-inner {
    display: grid !important;
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 1rem !important;
    width: 100% !important;
    position: relative;
    z-index: 1;
}

/* ===== CARD SOLUTION ===== */
.hero-solution-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 170px;
    position: relative;
    backdrop-filter: blur(2px);
}

.hero-solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: #c9a84c;
}

.hero-solution-number {
    font-size: 0.65rem;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.hero-solution-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
    background: #ffffff;
}

.hero-solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-solution-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a2a6c;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.hero-solution-desc {
    font-size: 0.65rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
    .hero-solutions-grid-inner {
        grid-template-columns: repeat(8, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .hero-solutions-grid-inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    .hero-solution-image {
        width: 50px;
        height: 50px;
    }
    .hero-solution-title {
        font-size: 0.7rem;
    }
    .hero-solution-desc {
        font-size: 0.6rem;
    }
     .desktop-only {
        display: none;
    }
  
}

@media (max-width: 480px) {
    .hero-solutions-grid-inner {
        grid-template-columns: 1fr !important;
    }
    .hero-solutions-grid {
        padding: 2rem 0;
    }
    .hero-solution-image {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   FILE UPLOAD - MODERN DESIGN
   ============================================ */
.file-upload-wrapper {
    position: relative;
}

.file-upload-input,
.form-group input.file-upload-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border: 2px dashed #c9a84c;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1a2a6c;
    font-weight: 600;
    font-size: 0.95rem;
}

.file-upload-label:hover {
    background: #fef9e7;
    border-color: #b89a3a;
    transform: translateY(-2px);
}

.file-upload-label i {
    font-size: 1.5rem;
    color: #c9a84c;
}

.file-upload-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.85rem;
}

.file-upload-name {
    color: #6b7280;
    font-style: italic;
    word-break: break-all;
}

.file-upload-name.has-file {
    color: #1a2a6c;
    font-weight: 600;
    font-style: normal;
}

.file-upload-clear {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.file-upload-clear:hover {
    background: #fee2e2;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    color: #6b7280;
    font-size: 0.8rem;
}

.form-hint i {
    color: #c9a84c;
    margin-right: 0.25rem;
}


/* ============================================
   INTL-TEL-INPUT CUSTOM OVERRIDE
   ============================================ */

/* Container */
.iti {
    width: 100%;
    position: relative;
    display: block;
    z-index: 1;
}

/* Input telepon di dalam .iti */
.iti input[type="tel"],
.form-group .iti input[type="tel"] {
    width: 100% !important;
    padding: 0.75rem 1rem 0.75rem 110px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-family: var(--font) !important;
    background: #ffffff !important;
    transition: all 0.3s ease;
    outline: none;
}

.iti input[type="tel"]:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(26, 42, 108, 0.1) !important;
}

/* Flag container (kiri input) */
.iti__flag-container {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 0 !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

/* Selected flag */
.iti__selected-flag {
    padding: 0 16px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
    border-right: 2px solid #e5e7eb !important;
    transition: background 0.2s ease;
    cursor: pointer;
    pointer-events: auto !important;
    font-size: 0.95rem !important;
}

.iti__selected-flag:hover {
    background: var(--light-gray) !important;
}

/* Dropdown negara */
.iti__country-list {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    margin-top: 4px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    z-index: 99999 !important;
    list-style: none !important;
    padding: 0 !important;
    text-align: left;
    pointer-events: auto !important;
    min-width: 320px !important;
    width: auto !important;
}

/* Item negara */
.iti__country {
    padding: 10px 14px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 0.95rem !important;
    pointer-events: auto !important;
    white-space: nowrap !important;
}

.iti__country:hover {
    background: var(--light-gray) !important;
}

.iti__country.iti__highlight {
    background: #fef9e7 !important;
}

.iti__dial-code {
    color: var(--gray) !important;
    margin-left: auto;
    font-weight: 500;
}

/* Search box di dropdown */
.iti__search-input {
    width: 100% !important;
    padding: 10px 12px !important;
    border: none !important;
    border-bottom: 1px solid #e5e7eb !important;
    border-radius: 8px 8px 0 0 !important;
    font-size: 0.9rem !important;
    outline: none;
}