/* ==========================================
   GOOD TRANS INDONESIA - MAIN STYLESHEET
   RED BACKGROUND - WHITE TEXT THEME
   ========================================== */

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #ffffff;
    background: #e63946;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* === HEADER STYLES === */
header {
    background: #e63946;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ffffff;
}

.atribut-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
}

.atribut-list li {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 10px 14px 10px 36px;
    position: relative;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    transition: all 0.25s ease;
}

.atribut-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #ffffff;
}

.atribut-list li:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}


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

.rekening-section {
    background: #f9fafb;
    padding: 50px 20px;
    margin-top: 60px;
}

.rekening-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* Judul */
.rekening-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: rgb(230, 57, 70);
}

/* Deskripsi */
.rekening-desc {
    color: rgba(230, 57, 70, 0.85);
    margin-bottom: 30px;
    font-size: 15px;
}

/* Card wrapper */
.rekening-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Card item */
.rekening-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-left: 6px solid rgb(230, 57, 70);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rekening-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Bank name */
.bank-name {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: rgb(230, 57, 70);
}

/* Nomor rekening */
.rekening-number {
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: rgb(230, 57, 70);
}

/* Pemilik rekening */
.rekening-owner {
    font-size: 14px;
    color: rgba(230, 57, 70, 0.8);
}

/* Catatan */
.rekening-note {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(230, 57, 70, 0.9);
}

/* Responsive tweak */
@media (max-width: 576px) {
    .rekening-container h2 {
        font-size: 24px;
    }

    .rekening-number {
        font-size: 18px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

nav a:hover,
nav a.active {
    background: #ffffff;
    color: #e63946;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* === FOOTER STYLES === */
footer {
    background: #ffffff;
    color: #e63946;
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 3px solid #e63946;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #e63946;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #e63946;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #e63946;
}

.contact-info a {
    color: #e63946;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-logo {
    text-align: bottom;
}

.footer-logo img {
    max-width: 100%;
}

.footer-bottom {
    border-top: 2px solid #e63946;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    line-height: 1.6;
    color: #e63946;
}

/* === UTILITY CLASSES === */
.btn-primary {
    background: #ffffff;
    color: #e63946;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #ffffff;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: #e63946;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #ffffff;
    cursor: pointer;
}

.btn-secondary:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* === HOMEPAGE STYLES === */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* SLIDER */
.hero-slider {
    position: absolute;
    inset: 0;
}

/* TIAP SLIDE */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AKTIF */
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* GRADIENT OVERLAY (TETAP MERAH) */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(230,57,70,0.85),
        rgba(214,40,57,0.85)
    );
}

/* KONTEN */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #ffffff;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ffffff;
}

/* DOT NAV */
.hero-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-nav span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.hero-nav span.active {
    background: white;
}

/* ARROWS */
.hero-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.arrow {
    background: rgba(255,255,255,0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    border: 2px solid #ffffff;
}

.arrow:hover {
    background: rgba(255,255,255,0.5);
}


.welcome {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background: #d62839;
    border-radius: 15px;
    margin-top: 40px;
}

.welcome h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
}

.welcome p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}

.features {
    padding: 60px 20px;
    background: #e63946;
}

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

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: #e63946;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.why-section {
    padding: 60px 20px;
    background: #c62534;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-content h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

.why-image {
    text-align: center;
}

.why-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 3px solid #ffffff;
}

.why-image h3 {
    margin-top: 20px;
    font-size: 24px;
    color: #ffffff;
}

/* === PAGE HEADERS === */
.layanan-header,
.tarif-header,
.bonus-header,
.atribut-header,
.fasilitas-header,
.registrasi-header {
    padding: 60px 20px 40px;
    text-align: center;
    background: #d62839;
}

.layanan-header h1,
.tarif-header h1,
.bonus-header h1,
.atribut-header h1,
.fasilitas-header h1,
.registrasi-header h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.layanan-header p,
.tarif-header p,
.bonus-header p,
.fasilitas-header p {
    font-size: 16px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === LAYANAN PAGE === */
.services-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.service-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: #e63946;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-card .description {
    font-size: 15px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e63946;
    font-weight: bold;
    font-size: 16px;
}

.cta-section {
    background: #ffffff;
    color: #e63946;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #e63946;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #e63946;
}

.cta-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
    border: 3px solid #e63946;
}

.image-placeholder {
    background: #f0f0f0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e63946;
    font-size: 18px;
    font-weight: bold;
}

/* === TARIF PAGE === */
.pricing-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.pricing-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid transparent;
}

.pricing-card.blue {
    border-color: #2196f3;
}

.pricing-card.orange {
    border-color: #ff9800;
}

.pricing-card.green {
    border-color: #4caf50;
}

.pricing-card.purple {
    border-color: #9c27b0;
}

.pricing-card.pink {
    border-color: #e91e63;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.pricing-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 24px;
    color: #e63946;
    margin-bottom: 20px;
    font-weight: bold;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 32px;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 10px;
}

.nett-badge {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}

.minimum-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.minimum-amount {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.advantages-section {
    padding: 60px 20px;
    background: #c62534;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.advantages-content {
    background: #ffffff;
    color: #e63946;
    padding: 50px 40px;
    border-radius: 15px;
}

.advantages-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #e63946;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.advantage-icon {
    font-size: 30px;
    margin-right: 15px;
    flex-shrink: 0;
}

.advantage-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #e63946;
}

.advantage-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.advantages-image {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.advantages-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #ffffff;
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #ffffff;
    font-style: italic;
}

/* === BONUS PAGE === */
.bonus-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.bonus-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.bonus-card.yellow {
    border: 3px solid #ffc107;
}

.bonus-card.orange {
    border: 3px solid #ff9800;
}

.bonus-card.blue {
    border: 3px solid #2196f3;
}

.bonus-card.purple {
    border: 3px solid #9c27b0;
}

.bonus-card.green {
    border: 3px solid #4caf50;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.terbesar-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #e63946;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.bonus-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 22px;
    color: #e63946;
    margin-bottom: 20px;
    font-weight: bold;
}

.bonus-amount {
    font-size: 32px;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 10px;
}

.bonus-label {
    font-size: 14px;
    color: #666;
}

.howto-section {
    padding: 60px 20px;
    background: #c62534;
}

.howto-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.howto-content h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: bold;
}

.howto-steps {
    list-style: none;
}

.howto-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    transition: background 0.3s;
}

.howto-step:hover {
    background: #fff5f5;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #e63946;
    color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.howto-image {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.howto-image .image-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #ffffff;
}

.howto-image .image-placeholder img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.cta-banner {
    background: #ffffff;
    color: #e63946;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.cta-banner h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #e63946;
}

.cta-banner h2:before {
    content: "🏆 ";
}

.cta-banner p {
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    color: #e63946;
}

/* === ATRIBUT PAGE === */
.atribut-section {
    padding: 60px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.atribut-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #f0f0f0;
}

.atribut-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #e63946;
}

.atribut-icon {
    width: 80px;
    height: 80px;
    background: #e63946;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.atribut-card h3 {
    font-size: 20px;
    color: #e63946;
    font-weight: bold;
}

.image-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #ffffff;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.info-banner {
    background: #ffffff;
    color: #e63946;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
}

.info-banner h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #e63946;
}

.info-banner p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #e63946;
}

/* === FASILITAS PAGE === */
.tabs-container {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.tabs {
    display: flex;
    gap: 0;
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tab {
    flex: 1;
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab:hover {
    background: #ffffff;
    color: #e63946;
}

.tab.active {
    background: #e63946;
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.tab-content {
    display: none;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #c62534;
}

.tab-content.active {
    display: block;
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.fasilitas-column {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.column-header {
    background: #e63946;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.column-content {
    padding: 30px 20px;
}

.fasilitas-item {
    padding: 12px 0;
    text-align: center;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.fasilitas-item:last-child {
    border-bottom: none;
}

.umum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.umum-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #f0f0f0;
}

.umum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #e63946;
}

.umum-icon {
    width: 80px;
    height: 80px;
    background: #e63946;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.umum-card h3 {
    font-size: 22px;
    color: #e63946;
    margin-bottom: 15px;
    font-weight: bold;
}

.umum-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* === KEANGGOTAAN PAGE === */
body.keanggotaan-page {
    background: #e63946;
}

.keanggotaan-header {
    padding: 60px 20px 40px;
    text-align: center;
}

.keanggotaan-header h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.keanggotaan-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px 60px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
}
.steps-column {
background: #ffffff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.steps-header {
background: #e63946;
color: white;
padding: 25px;
text-align: center;
font-size: 22px;
font-weight: bold;
}
.steps-content {
padding: 40px 35px;
}
.intro-text {
font-size: 15px;
color: #333;
line-height: 1.6;
margin-bottom: 30px;
}
.step-item {
margin-bottom: 35px;
}
.step-item:last-child {
margin-bottom: 0;
}
.step-title {
font-size: 16px;
color: #e63946;
font-weight: bold;
margin-bottom: 12px;
}
.step-details {
list-style: none;
padding-left: 0;
}
.step-details li {
padding: 8px 0 8px 25px;
position: relative;
font-size: 14px;
color: #555;
line-height: 1.5;
}
.step-details li:before {
content: "•";
position: absolute;
left: 8px;
color: #e63946;
font-weight: bold;
font-size: 18px;
}
.note-text {
font-size: 13px;
color: #666;
font-style: italic;
margin-top: 8px;
padding-left: 25px;
}
.visual-column {
display: flex;
flex-direction: column;
align-items: center;
}
.network-title {
font-size: 18px;
color: #ffffff;
font-weight: bold;
margin-bottom: 20px;
text-align: center;
}
.network-visual {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-bottom: 30px;
}
.network-icon {
width: 60px;
height: 60px;
background: #ffffff;
color: #e63946;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
box-shadow: 0 3px 10px rgba(0,0,0,0.3);
border: 2px solid #ffffff;
}
.network-icon.small {
width: 45px;
height: 45px;
font-size: 20px;
}
/* === REGISTRASI PAGE === */
.registrasi-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px 60px;
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 40px;
align-items: start;
}
.info-column {
background: #ffffff;
border-radius: 15px;
padding: 40px;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
position: sticky;
top: 80px;
}
.info-title {
font-size: 24px;
color: #e63946;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
}
.info-image {
text-align: center;
margin-bottom: 20px;
max-width: 450px;
margin-left: auto;
margin-right: auto;
}

.info-image .image-placeholder {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
border: 3px solid #e63946;
}

.info-image .image-placeholder img {
width: 100%;
max-height: 400px;
object-fit: cover;
display: block;
}

.info-image .image-caption {
text-align: center;
margin-top: 15px;
font-size: 14px;
color: #666;
font-style: italic;
}
.benefits-box {
background: #e63946;
color: white;
border-radius: 10px;
padding: 25px;
margin-top: 30px;
}
.benefits-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 15px;
}
.benefits-list {
list-style: none;
padding: 0;
}
.benefits-list li {
padding: 8px 0 8px 25px;
position: relative;
font-size: 14px;
line-height: 1.5;
}
.benefits-list li:before {
content: "•";
position: absolute;
left: 8px;
font-weight: bold;
font-size: 18px;
}
.form-column {
background: #ffffff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.form-wrapper {
position: relative;
width: 100%;
min-height: 800px;
}
.google-form-embed {
width: 100%;
height: 900px;
border: none;
border-radius: 15px;
}
.form-placeholder {
padding: 40px;
text-align: center;
}
.form-placeholder h3 {
color: #e63946;
font-size: 22px;
margin-bottom: 20px;
}
.form-placeholder p {
color: #666;
font-size: 15px;
line-height: 1.6;
margin-bottom: 15px;
}
.form-placeholder .note {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 15px;
margin-top: 20px;
text-align: left;
border-radius: 5px;
}
.form-placeholder .note strong {
color: #856404;
}
@media (max-width: 768px) {
nav {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
background: #e63946;
flex-direction: column;
padding: 20px;
box-shadow: 0 5px 10px rgba(0,0,0,0.3);
transition: left 0.3s;
gap: 15px;
border-top: 2px solid #ffffff;
}

nav.active {
    left: 0;
}

.menu-toggle {
    display: flex;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Footer Mobile */
.footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-right {
    justify-content: center;
}

.footer-logo {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
}

/* Hero Mobile */
.hero {
    height: 400px;
}

.hero-content h1 {
    font-size: 32px;
}

.hero-content h2 {
    font-size: 18px;
}

.arrow {
    display: none;
}

/* General Headers Mobile */
.layanan-header h1,
.tarif-header h1,
.bonus-header h1,
.atribut-header h1,
.fasilitas-header h1,
.keanggotaan-header h1,
.registrasi-header h1 {
    font-size: 28px;
}

/* Why Section Mobile */
.why-container {
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Services Mobile */
.services-grid {
    grid-template-columns: 1fr;
}

/* Pricing Mobile */
.pricing-grid {
    grid-template-columns: 1fr;
}

.price-amount {
    font-size: 28px;
}

.advantages-container {
    grid-template-columns: 1fr;
    gap: 30px;
}

.advantages-content {
    padding: 40px 30px;
}

.advantages-content h2 {
    font-size: 24px;
}

/* Advantages Image Mobile - tetap proporsional */
.advantages-image {
    max-width: 100%;
}

.advantages-image img {
    max-height: 300px;
}

/* Bonus Mobile */
.bonus-grid {
    grid-template-columns: 1fr;
}

.bonus-amount {
    font-size: 28px;
}

.howto-container {
    grid-template-columns: 1fr;
    gap: 30px;
}

.howto-content h2 {
    font-size: 24px;
}

/* Howto Image Mobile - tetap proporsional */
.howto-image {
    max-width: 100%;
}

.howto-image .image-placeholder img {
    max-height: 300px;
}

.cta-banner h2 {
    font-size: 22px;
}

/* Atribut Mobile */
.atribut-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.atribut-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
}

.atribut-card h3 {
    font-size: 16px;
}

/* Fasilitas Mobile */
.tabs {
    flex-direction: column;
}

.tab {
    font-size: 14px;
    padding: 15px;
}

.fasilitas-grid,
.umum-grid {
    grid-template-columns: 1fr;
}

/* Keanggotaan Mobile */
.keanggotaan-container {
    grid-template-columns: 1fr;
}

.steps-header {
    font-size: 18px;
    padding: 20px;
}

.steps-content {
    padding: 30px 25px;
}

.network-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
}

.network-icon.small {
    width: 38px;
    height: 38px;
    font-size: 18px;
}

/* Registrasi Mobile */
.registrasi-container {
    grid-template-columns: 1fr;
}

.info-column {
    position: relative;
    top: 0;
    padding: 30px 25px;
}

.google-form-embed {
    height: 1200px;
}

/* Info Image Mobile - tetap proporsional */
.info-image {
    max-width: 100%;
}

.info-image .image-placeholder img {
    max-height: 300px;
}

/* Image Placeholders Mobile */
.image-placeholder {
    height: 280px;
}

.atribut-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
.atribut-grid {
grid-template-columns: 1fr;
}
.features-container {
    grid-template-columns: 1fr;
}

.network-visual {
    flex-wrap: wrap;
}
}

/* FORCE ARROWS TAMPIL DI MOBILE */
.hero-arrows {
    z-index: 20;
}

.arrow {
    width: 44px;
    height: 44px;
    font-size: 22px;
    background: rgba(0,0,0,0.45);
    border: 2px solid #fff;
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
    .arrow {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 14px;
    }
}