/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    /* Warna dari desain Figma Anda */
    --color-primary: #0F3043;      /* Biru Tua pekat */
    --color-accent: #677791;       /* Biru Abu-abu untuk highlight */
    --color-bg-nav: #F8F8F8;       /* Warna Background Navbar */
    --color-white: #FFFFFF;
    
    --font-main: 'Public Sans', sans-serif;
    --max-width: 1200px; /* Batas lebar maksimal konten */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-primary);
    background-color: var(--color-bg-nav);
    -webkit-font-smoothing: antialiased;
}

/* Memastikan konten tidak mepet ke layar di HP/Tablet */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem); 
}

img {
    display: block;
    max-width: 100%;
}

/* =========================================
   BACKGROUND HERO & OVERLAY
========================================= */
.hero-wrapper {
    position: relative;
    min-height: 100vh; /* Minimal setinggi layar perangkat */
    /* Ganti URL di bawah dengan gambar background gedung/langit asli Anda */
    background: url('https://placehold.co/1440x799/cccccc/999999?text=Gambar+Background+Layar') center/cover no-repeat;
}

/* Efek Transparan Overlay (menggantikan kotak absolute transparansi 40%) */
.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 248, 248, 0.75); /* Ditingkatkan jadi 75% agar teks sangat mudah dibaca */
    z-index: 0;
}

.header, .hero {
    position: relative;
    z-index: 1; /* Agar berada di atas overlay background */
}

/* =========================================
   NAVBAR (Header)
========================================= */
.header {
    background-color: var(--color-bg-nav);
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Sedikit bayangan */
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    max-height: 60px; /* Diperkecil agar lebih proporsional dari 99px */
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--color-accent);
}

/* =========================================
   HERO SECTION (Konten Utama)
========================================= */
.hero {
    padding: 4rem 0;
}

.hero__inner {
    display: flex;
    flex-direction: column; /* HP: Tumpuk ke bawah */
    gap: 4rem;
    align-items: center;
}

.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero__subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1rem); /* 16px di desktop */
    font-weight: 300;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* 64px max di desktop */
    font-weight: 600;
    line-height: 1.15;
}

.text-highlight {
    color: var(--color-accent);
    font-weight: 700;
}

.hero__desc {
    font-size: clamp(1rem, 2vw, 1.5rem); /* 24px max di desktop */
    font-weight: 300;
    line-height: 1.6;
    max-width: 650px;
}

/* Tombol CTA */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 1rem;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Gambar Visual Kanan */
.hero__visual {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero__img {
    width: 100%;
    max-width: 373px;
    height: auto;
    aspect-ratio: 373 / 460;
    object-fit: cover;
    border-radius: 150px; /* Lengkungan bentuk pil oval */
    border: 15px solid var(--color-white); /* Bingkai putih */
    box-shadow: 0 15px 35px rgba(15, 48, 67, 0.15); /* Bayangan estetik */
}

/* =========================================
   MEDIA QUERIES (TABLET & DESKTOP)
========================================= */

/* Untuk layar HP (Layar Kecil) */
@media (max-width: 767px) {
    .header__inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero__content {
        align-items: center;
        text-align: center;
    }

    .btn-primary {
        margin-top: 1rem;
    }
}

/* Untuk Desktop (Layar Lebar) */
@media (min-width: 768px) {
    .hero {
        padding: 6rem 0; /* Jarak lebih luas di desktop */
    }

    .hero__inner {
        flex-direction: row; /* Berjejer Kiri Kanan */
        justify-content: space-between;
    }

    .hero__content {
        padding-right: 2rem;
    }

    .hero__visual {
        justify-content: flex-end; /* Gambar ditarik ke sisi kanan container */
    }
}
/* =========================================
   VARIABLES (Tambahkan ke :root jika belum ada)
========================================= */
:root {
    --color-slate: #677791;        /* Abu-abu kebiruan */
    --color-dark-blue: #023048;    /* Biru pekat (Highlight Card) */
    --color-navy: #0F3043;         /* Biru gelap text/tombol */
}

/* =========================================
   FEATURES SECTION
========================================= */
.features {
    padding: 4rem 0;
}

.features__banner {
    background-color: var(--color-slate);
    border-radius: 16px;
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr; /* HP: 1 kolom menumpuk */
    gap: 2rem;
}

.feature-card {
    text-align: center;
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--color-white);
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card__desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Card yang di-highlight (Active) */
.feature-card--active {
    background-color: var(--color-dark-blue);
    box-shadow: 0 10px 30px rgba(2, 48, 72, 0.4);
}

.features__showcase {
    display: flex;
    justify-content: center;
    width: 100%;
}

.features__showcase img {
    width: 100%;
    max-width: 1024px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* =========================================
   ABOUT US SECTION (Overlapping Cards)
========================================= */
.about {
    padding: 4rem 0;
}

.about__container {
    display: flex;
    flex-direction: column; /* HP: Menumpuk ke bawah */
    gap: 2rem;
}

.about__left {
    background-color: var(--color-slate);
    color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.about__title-main {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
}

.about__subtitle-main {
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
}

.about__desc-main {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

.btn-primary--dark {
    background-color: var(--color-navy);
}

.btn-primary--dark:hover {
    background-color: var(--color-dark-blue);
}

.about__right {
    background-color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Efek Card Putih Melayang */
}

.about__title-sec {
    color: var(--color-navy);
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.about__desc-sec {
    color: var(--color-slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-item__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--color-navy);
    border-radius: 6px;
    margin-top: 5px;
}

.about-item__text h4 {
    color: var(--color-navy);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-item__text p {
    color: var(--color-slate);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================================
   PARTNERS SECTION
========================================= */
.partners {
    padding: 2rem 0 6rem;
}

.partners__container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.partners__text {
    max-width: 600px;
}

.partners__title {
    color: var(--color-navy);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.partners__subtitle {
    color: var(--color-slate);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1rem;
}

.partners__desc {
    color: var(--color-slate);
    font-size: 0.95rem;
    line-height: 1.6;
}

.partners__logos {
    display: flex;
    flex-direction: column; /* Gambar logo tumpuk di HP */
    gap: 2rem;
    width: 100%;
    align-items: center;
}

.partners__logos img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================================
   MEDIA QUERIES (TABLET & DESKTOP)
========================================= */
@media (min-width: 768px) {
    /* Features Grid jadi 2 kolom di tablet, 4 kolom di PC */
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Partner Logos sejajar di Tablet/PC */
    .partners__logos {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .features__banner {
        padding: 1rem 2rem;
    }

    .features__grid {
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
    }

    /* Membuat Card Active terlihat menonjol keluar dari banner abu-abu */
    .feature-card--active {
        transform: scale(1.1); /* Sedikit diperbesar */
        padding: 2.5rem 1.5rem; /* Lebih panjang secara vertikal */
    }

    /* Trik Overlapping (Tumpang Tindih) About Us Section untuk Desktop */
    .about__container {
        flex-direction: row;
        align-items: center;
    }

    .about__left {
        flex: 0 0 35%; /* Lebar kotak abu-abu 35% */
        padding: 4rem 3rem;
        z-index: 2; /* Berada di atas */
        margin-right: -50px; /* Menarik kotak putih agar tertumpuk */
    }

    .about__right {
        flex: 1;
        padding: 4rem 3rem 4rem 5rem; /* Padding kiri lebih besar untuk ruang overlap */
        z-index: 1; /* Berada di bawah kotak abu-abu */
    }

    /* Layout Partner jadi Kiri Teks - Kanan Logo */
    .partners__container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .partners__text {
        flex: 0 0 40%;
    }

    .partners__logos {
        flex: 1;
        flex-direction: column; /* Tumpuk 2 logo ke bawah di sisi kanan */
        align-items: flex-end;
    }
}
/* =========================================
   VARIABLES (Tambahan)
========================================= */
:root {
    --color-bg-gray: #EBEBEA;      /* Background abu-abu terang */
    --color-slate-blue: #65758E;   /* Warna biru keabu-abuan untuk box details */
}

/* =========================================
   TECHNICAL BREAKDOWN SECTION
========================================= */
.tech-breakdown {
    background-color: var(--color-bg-gray);
    padding: 5rem 0;
}

.tech-breakdown__container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tech-breakdown__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 1rem;
}

.tech-breakdown__title {
    color: var(--color-navy);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
}

.tech-breakdown__subtitle {
    color: var(--color-navy);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-style: italic;
    opacity: 0.8;
}

.tech-breakdown__desc {
    color: var(--color-slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Grid System untuk 3 Kartu */
.tech-breakdown__grid {
    display: grid;
    grid-template-columns: 1fr; /* HP: 1 Kolom */
    gap: 3rem;
    align-items: center;
}

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
}

.tech-card__icon {
    width: 64px;
    height: 64px;
    color: var(--color-navy);
}

.tech-card__title {
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: 800;
}

.tech-card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
}

.tech-card__info p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 320px;
}

/* Warna text standar untuk card biasa */
.tech-card .info-label,
.tech-card .tech-card__info p {
    color: var(--color-slate);
}

/* Variasi Card 1: Highlighted (Bentuk Pil / Oval) */
.tech-card--highlight {
    background-color: var(--color-navy);
    border-radius: 100px; /* Bentuk melengkung ekstrim */
    border: 10px solid #FAFAF8;
    padding: 4rem 2rem;
    box-shadow: 0 20px 40px rgba(15, 48, 67, 0.15);
}

.tech-card--highlight .tech-card__icon {
    color: var(--color-white);
}

.tech-card--highlight .tech-card__title,
.tech-card--highlight .info-label,
.tech-card--highlight .tech-card__info p {
    color: var(--color-white);
}

/* Small Square Bullets */
.square-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #D9D9D9;
}
.square-bullet--dark { background-color: var(--color-navy); }
.square-bullet--white { background-color: var(--color-white); }


/* =========================================
   ARCHITECTURE SECTION
========================================= */
.architecture {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.architecture__container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.architecture__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.architecture__title {
    color: var(--color-navy);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
}

.architecture__subtitle {
    color: var(--color-navy);
    font-size: 1rem;
    font-style: italic;
    opacity: 0.8;
}

.architecture__visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.architecture__visual img {
    width: 100%;
    max-width: 1075px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Kotak Detail Biru Keabu-abuan di Bawah Diagram */
.architecture__details {
    background-color: var(--color-slate-blue);
    color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 21px;
    width: 100%;
    max-width: 1075px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 15px 35px rgba(101, 117, 142, 0.3);
}

.architecture__intro {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.arch-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.arch-list__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.arch-list__item .square-bullet {
    margin-top: 6px;
    min-width: 12px; /* Mencegah kotak mengecil saat teks panjang */
}

.arch-list__content h4 {
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.arch-list__content p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.9;
}


/* =========================================
   MEDIA QUERIES (TABLET & DESKTOP)
========================================= */
@media (min-width: 768px) {
    /* Merubah Grid Technical Breakdown jadi 3 Kolom sejajar di layar besar */
    .tech-breakdown__grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    /* Penyesuaian agar Kartu Highlight lebih panjang meniru mockup Figma */
    .tech-card--highlight {
        padding: 5rem 2rem; 
        margin-top: -2rem; /* Membuatnya sedikit menonjol ke atas */
    }

    .architecture__details {
        padding: 4rem 3rem;
    }
}
/* =========================================
   PRODUCT SHOWCASE SECTION (Reusables)
========================================= */
.showcase {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.showcase__container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2; /* Agar berada di atas overlay/background */
}

/* Header (Kiri: Product Showcase, Kanan: Judul Spesifik) */
.showcase__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.showcase__title-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.showcase__title-main {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
}

.showcase__title-sub {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-style: italic;
    opacity: 0.8;
}

.showcase__title-right {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    font-style: italic;
}

/* Figure & Gambar */
.showcase__figure {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.showcase__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Ukuran bayangan disesuaikan dengan intensitas warna background */
.showcase__img--medium {
    max-width: 790px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.showcase__img--large {
    max-width: 1077px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase__labels {
    width: 100%;
    max-width: 790px;
    display: flex;
    justify-content: space-around;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    font-style: italic;
}

/* Konten Paragraf Bawah */
.showcase__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
}

.showcase__content-title {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}

.showcase__content-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    text-align: justify; /* Supaya rata kiri-kanan rapi seperti di desain */
}

/* =========================================
   VARIANTS (Dark & Light Mode)
========================================= */

/* Dark Variant (Product Design) */
.showcase--dark {
    background-color: var(--color-slate);
    color: var(--color-white);
}

/* Ganti URL di bawah dengan gambar background asli Anda untuk section pertama */
.showcase__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://placehold.co/1440x963/677791/677791') center/cover no-repeat;
    opacity: 0.4; /* Menurunkan opacity gambar agar teks putih tetap terbaca jelas */
    z-index: 1;
}

.showcase--dark .showcase__title-main,
.showcase--dark .showcase__title-right {
    color: var(--color-white);
}

/* Light Variant (Casing Design) */
.showcase--light {
    background-color: var(--color-white);
    color: var(--color-navy);
}

.showcase--light .showcase__title-main,
.showcase--light .showcase__title-right {
    color: var(--color-navy);
}

/* =========================================
   MEDIA QUERIES (TABLET & DESKTOP)
========================================= */
@media (min-width: 768px) {
    .showcase {
        padding: 6rem 0;
    }

    /* Merubah header menjadi format Kiri-Kanan di layar lebar */
    .showcase__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end; /* Supaya teks menempel ke garis bawah yang sama */
        text-align: left;
    }

    .showcase__title-right {
        text-align: right;
    }
    
    .showcase__content-desc {
        font-size: 1rem;
    }
}
/* =========================================
   ANTENNAS SECTION
========================================= */
.antennas-section {
    width: 100%;
}

/* 1. Header (Grey Background) */
.antennas-header {
    background-color: #62728C; /* Warna abu-abu kebiruan sesuai desain */
    padding: 6rem 0; /* Memberi ruang tinggi seperti desain */
}

.antennas-header__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.antennas-header__left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.antennas-header__left .subtitle {
    color: var(--color-navy); /* Biru gelap (#0F3043) */
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
}

.antennas-header__left .title-main {
    color: var(--color-navy);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
}

.antennas-header__right .desc {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.6;
}

/* 2. Omnidirectional Content (White Background) */
.antennas-omni {
    background-color: var(--color-white);
    padding: 5rem 0;
}

.antennas-omni__inner {
    display: flex;
    flex-direction: column; /* Mobile: Tumpuk bawah */
    gap: 3rem;
    align-items: center;
}

.antennas-omni__visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.omni-img {
    width: 100%;
    max-width: 770px;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.antennas-omni__info {
    width: 100%;
}

/* 3. Directional Content (White Background) */
.antennas-dir {
    background-color: var(--color-white);
    padding: 3rem 0 6rem;
}

.antennas-dir__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center; /* Memusatkan semua konten */
}

.antennas-dir__header {
    width: 100%;
    max-width: 1029px; /* Sama lebar dengan gambar */
    text-align: left; /* Teks rata kiri */
}

.subtitle--dark {
    color: var(--color-navy);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
}

.antennas-dir__visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dir-img {
    width: 100%;
    max-width: 1029px;
    height: auto;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.antennas-dir__info {
    width: 100%;
    max-width: 1029px;
    margin-top: -1rem; /* Merapatkan kotak info ke gambar */
}

/* =========================================
   INFO CARDS (Kotak Abu-Abu Slate)
========================================= */
.info-card {
    background-color: var(--color-slate); /* #677791 */
    color: var(--color-white);
    border-radius: 22px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(103, 119, 145, 0.3);
}

.info-card__title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.info-card__subtitle {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
}

.info-card__desc {
    font-size: 0.9rem; /* Ukuran font lebih kecil sedikit sesuai desain */
    line-height: 1.8;
    font-weight: 200;
    opacity: 0.95;
}

/* Card Vertical (Untuk Omni - Kotak Kanan) */
.info-card--vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px; /* Lebar dibatasi meniru desain */
    margin: 0 auto;
}

/* Card Horizontal (Untuk Directional - Melintang Bawah) */
.info-card--horizontal {
    display: flex;
    flex-direction: column; /* Mobile: Tumpuk bawah */
    gap: 1.5rem;
}


/* =========================================
   MEDIA QUERIES (TABLET & DESKTOP)
========================================= */
@media (min-width: 768px) {
    
    /* Header Omni: Kiri dan Kanan */
    .antennas-header__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end; /* Supaya sejajar bawah */
    }

    .antennas-header__left {
        flex: 0 0 45%;
    }

    .antennas-header__right {
        flex: 1;
        padding-left: 2rem; /* Jarak pisah kolom */
    }

    /* Omni Content: Gambar Kiri, Info Card Kanan */
    .antennas-omni__inner {
        flex-direction: row;
        justify-content: center;
        align-items: stretch; /* Memanjang sama rata */
    }

    .antennas-omni__visual {
        flex: 0 0 auto; /* Menyesuaikan ukuran gambar */
    }

    .antennas-omni__info {
        flex: 1;
        display: flex;
        justify-content: flex-start; /* Kotak info mepet ke kiri dekat gambar */
    }

    .info-card--vertical {
        margin: 0; /* Menghilangkan margin tengah */
    }

    /* Directional Info Card: Kiri (Judul) - Kanan (Paragraf) */
    .info-card--horizontal {
        flex-direction: row;
        align-items: stretch;   
    }

    .info-card__col-left {
        flex: 0 0 30%; /* Kolom judul 30% lebar */
        padding-right: 2rem;
    }

    .info-card__col-right {
        flex: 1; /* Kolom deskripsi mengambil sisa lebar */
    }
}

@media (min-width: 1024px) {
    /* Penyesuaian akhir agar kotak Omni tidak terlalu mepet gambar */
    .antennas-omni__inner {
        gap: 4rem;
    }

    .antennas-header {
        padding: 8rem 0 4rem;
    }
}

/* Layout Header */
.antennas-header__inner {
    display: flex;
    flex-wrap: wrap; /* Agar bisa turun ke bawah saat di mobile */
    gap: 40px;
    align-items: flex-start;
    padding: 60px 20px;
}

.antennas-header__left {
    flex: 1;
    min-width: 300px;
}

.antennas-header__right {
    flex: 1.5; /* Memberi ruang lebih besar untuk konten kanan */
    min-width: 300px;
}

/* Styling Gambar */
.antennas-header__image {
    width: 100%;
    margin-bottom: 25px; /* Jarak antara gambar dan teks deskripsi */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.antennas-header__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.antennas-header__image:hover img {
    transform: scale(1.03); /* Efek zoom tipis saat di-hover */
}

/* Tipografi */
.subtitle {
    color: #E9B814;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-main {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .antennas-header__inner {
        flex-direction: column;
        gap: 30px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .antennas-header__right {
        width: 100%;
    }
}

* --- FOOTER --- */
.efarm-footer { background: var(--primary-green); color: var(--white); padding: 60px 0 20px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-size: 40px; line-height: 1; margin-bottom: 20px; }
.footer-heading { font-size: 1.2rem; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links a { color: var(--white); text-decoration: none; opacity: 0.8; line-height: 2; }
.footer-links a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; text-align: center; font-size: 0.9rem; opacity: 0.8; }
