/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.text-highlight {
    color: #e31e24;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e31e24;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c4161c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
    background-color: #fff;
    color: #e31e24;
    border: 2px solid #e31e24;
}

.btn-secondary:hover {
    background-color: #e31e24;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.btn-full {
    width: 100%;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #e31e24;
}

.navbar.scrolled .nav-menu a {
    color: #fff;
}

.navbar.scrolled .nav-menu a:hover {
    color: #ffebee;
}

.navbar.scrolled .logo-text {
    color: #fff;
}

.navbar .logo-text .text-highlight {
    color: #e31e24;
}

.navbar.scrolled .logo-text .text-highlight {
    color: #ffebee;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

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

.logo-icon-left,
.logo-icon-right {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e31e24;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

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

.navbar.scrolled .hamburger span {
    background: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.3) 0%, rgba(255, 77, 77, 0.2) 50%, rgba(227, 30, 36, 0.3) 100%),
        url('uploads/TB.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(227, 30, 36, 0.1) 0%, transparent 50%, rgba(255, 77, 77, 0.1) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: cover, 200px 200px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title .text-highlight {
    color: #ffebee;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e31e24, #ff4d4d);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #e31e24;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e31e24;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #e31e24 0%, #ff4d4d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.image-placeholder.small {
    height: 200px;
}

.image-placeholder span {
    opacity: 0.9;
}

/* Visi Misi Section */
.visi-misi {
    background-color: #f8f9fa;
}

.visi-misi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.visi-card,
.misi-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #e31e24;
}

.visi-card:hover,
.misi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.2);
}

.visi-icon,
.misi-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.visi-card h3,
.misi-card h3 {
    font-size: 1.8rem;
    color: #e31e24;
    margin-bottom: 20px;
    font-weight: 600;
}

.visi-card p {
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.misi-card ol {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.misi-card li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
    counter-increment: item;
}

.misi-card li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #e31e24, #ff4d4d);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #e31e24;
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.2);
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Armada Section */
.armada {
    background-color: #fff;
}

.armada-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.armada-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.armada-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.armada-image {
    width: 100%;
}

.armada-card h3 {
    font-size: 1.4rem;
    color: #e31e24;
    padding: 20px 20px 10px;
}

.armada-card p {
    color: #666;
    padding: 0 20px 20px;
}

/* Contact Section */
.contact {
    background-color: #f8f9fa;
    text-align: center;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Section Subtitle */
.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: stretch;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Contact Button - Unified Base Styles */
.contact-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 90px;
    width: 100%;
    max-width: 420px;
    justify-content: flex-start;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateX(5px);
}

.contact-btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-btn-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
}

.contact-btn-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.contact-btn-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.3px;
}

.contact-btn-detail {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.contact-btn-badge {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 9px 18px;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.contact-button:hover .contact-btn-badge {
    background: rgba(255, 255, 255, 0.4);
}

/* Address Link - Coral/Pink Gradient */
.address-link {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.25);
    min-width: 350px;
    max-width: 350px;
    min-height: 100px;
    max-height: 500px;
}

.address-link:hover {
    background: linear-gradient(135deg, #EE5A6F 0%, #D63D5B 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Phone Link - Blue Gradient */
.phone-link {
    background: linear-gradient(135deg, #4285F4 0%, #3367D6 100%);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.25);
}

.phone-link:hover {
    background: linear-gradient(135deg, #3367D6 0%, #1A73E8 100%);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* WhatsApp Link - Green Gradient */
.wa-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.wa-link:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Email Link - Red Gradient */
.email-link {
    background: linear-gradient(135deg, #EA4335 0%, #D33426 100%);
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.25);
}

.email-link:hover {
    background: linear-gradient(135deg, #D33426 0%, #B32416 100%);
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.4);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e31e24;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER FINAL BALANCE ===== */
.footer {
    background: linear-gradient(135deg, #e31e24 0%, #c4161c 100%);
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* LEFT */
.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer .text-highlight {
    color: #ffebee;
}

.footer-address {
    margin-top: 15px;
}

.footer-address p {
    margin: 3px 0;
    font-weight: 400;
    opacity: 0.9;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* penting: samakan tinggi */
    gap: 40px;
}

.footer-left,
.footer-right {
    flex: 1;
}

/* kanan dibuat tinggi penuh */
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-social {
    list-style: none; /* hilangkan titik */
    padding: 0;
    margin: 0;
}

.footer-social li {
    margin: 4px 0;
}

.footer-social a {
    display: block; /* ini kunci supaya lurus */
    color: #fff;
    text-decoration: none;
}

/* ini kunci agar balance */
.footer-copy {
    margin-top: auto; /* dorong ke bawah */
    opacity: 0.8;
    padding-top: 10px;
}

.footer-social a {
    margin: 3px 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-right {
        position: static;
        margin-top: 15px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-right {
        align-items: flex-start;
        justify-content: flex-start;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-right {
        align-items: flex-start;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 5px 0;
    }

    .nav-wrapper {
        padding: 8px 15px;
    }

    .hamburger {
        display: flex;
        padding: 5px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 2.5px 0;
    }

    .logo-icon-left,
    .logo-icon-right {
        height: 28px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .nav-menu {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 75%;
        max-width: 300px;
        height: calc(100vh - 50px);
        background: linear-gradient(135deg, #e31e24 0%, #c4161c 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: 20px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        color: #fff;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .navbar.scrolled .nav-menu a {
        color: #fff;
    }

    .navbar.scrolled .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        max-width: 100%;
    }

    .contact-button {
        padding: 16px 16px;
        height: auto;
        min-height: 85px;
    }

    .contact-btn-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .contact-btn-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-btn-label {
        font-size: 0.8rem;
    }

    .contact-btn-detail {
        font-size: 0.9rem;
    }

    .contact-btn-badge {
        font-size: 0.75rem;
        padding: 7px 14px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .stats {
        justify-content: center;
    }

    .visi-misi-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .armada-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-right {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content.modal-content-multi {
    max-width: 95%;
}

.modal-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.modal-content-multi .modal-images {
    flex-direction: column;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
}

.modal-content-multi img {
    max-width: 100%;
    max-height: 50vh;
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: #e31e24;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.modal-close:hover {
    background: #c4161c;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 15px;
    }

    .modal-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .modal-content-multi img {
        max-height: 40vh;
    }
}

/* MOBILE HERO BUTTON - RAMAH ORANG TUA */
@media (max-width: 768px) {

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 0 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 16px 18px;   /* lebih besar */
        font-size: 1.05rem;   /* lebih jelas */
        font-weight: 600;
        border-radius: 8px;
    }

    .hero-buttons .btn-primary {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* tekan lebih nyaman */
    .hero-buttons .btn:active {
        transform: scale(0.98);
    }
}

@media (max-width: 768px) {

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 18px; /* tambah jarak antar tombol */
        padding: 0 12px;
        margin-top: 10px; /* jarak dari teks atas */
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 18px 20px; /* tombol lebih besar */
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 10px;
    }

    /* jarak tambahan kalau ada tombol kedua */
    .hero-buttons .btn + .btn {
        margin-top: 4px;
    }

}

.footer-social {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.footer-social li {
    list-style: none !important;
}

.footer-social li::marker {
    content: none; /* hapus bullet modern */
}