:root {
    --primary-color: #084537;
    --secondary-color: #0B6E4F;
    --accent-color: #F2C94C;
    --text-color: #333333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: var(--header-height);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles - Lebih Presisi */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(8, 69, 55, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.logo img {
    height: calc(var(--header-height) - 25px);
    width: auto;
    object-fit: contain;
}

.logo-text {
    margin-left: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Navigation - Lebih Presisi */
.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section - Lebih Presisi */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    width: 100%;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Buttons - Lebih Presisi */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styles - Lebih Presisi */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
}

.certification img {
    max-width: 80px;
    height: auto;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        margin-top: 15px;
    }

    .social-links a {
        margin: 0 10px;
    }
}

/* Responsive Design - Lebih Presisi */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    html {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .main-nav {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Animations - Lebih Presisi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Menu Table Styles */
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.menu-table th,
.menu-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.menu-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.menu-table tr:hover {
    background-color: #f5f5f5;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Popular Menu Section */
.popular-menu {
    padding: 80px 0;
    background: var(--white);
}

.menu-preview {
    max-width: 900px;
    margin: 0 auto;
}

/* Location Preview */
.location-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
}

.location-item h3 {
    color: #ff4d4d;
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff4d4d;
}

.location-item p {
    color: #4a4a4a;
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    transition: color 0.3s ease;
}

.location-item p:hover {
    color: #ff4d4d;
    padding-left: 5px;
}

.location-note {
    margin: 30px 0;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Delivery Section */
.delivery-section {
    padding: 80px 0;
    background: var(--white);
}

.delivery-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.partner-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.partner-logo:hover {
    opacity: 0.8;
}

/* Section Headers */
section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Styling untuk halaman lokasi */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.main-location {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.location-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 30px;
}

.address-info {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.branch-locations {
    padding: 60px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.location-area {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.location-area:hover {
    transform: translateY(-5px);
}

.branch-list {
    list-style: none;
    padding: 0;
}

.branch-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.branch-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.contact-item a {
    color: #e44d26;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c73e1d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-detail {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Styling untuk halaman About Us */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Styling untuk halaman Menu */
.menu-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.menu-section {
    padding: 80px 0;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.menu-item-price {
    font-weight: bold;
    color: var(--accent-color);
}

.menu-item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        text-align: center;
    }
    
    .menu-item {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .about-hero,
    .menu-hero {
        height: 40vh;
    }
}

/* Animasi */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Styling */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.year {
    position: absolute;
    width: 70px;
    height: 70px;
    right: -35px;
    top: 0;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.timeline-item:nth-child(even) .year {
    left: -35px;
}

.content {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member .position {
    color: var(--primary-color);
    font-style: italic;
    margin: 10px 0;
}

/* Certification Section */
.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certification-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.certification-item img {
    height: 100px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(even) .year {
        left: 5px;
    }
    
    .year {
        left: 5px;
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
}

/* Update Footer Styles - Lebih Presisi */
.footer-section .delivery-partners {
    display: grid;
    grid-template-columns: repeat(3, 60px); /* Ukuran tetap */
    gap: 10px;
    margin-top: 12px;
    justify-content: start;
}

.footer-section .partner-logo {
    width: 60px;
    height: 30px;
    background: white;
    padding: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.footer-section .partner-logo img {
    width: auto;
    height: 20px; /* Ukuran tetap */
    object-fit: contain;
}

.footer-section .partner-logo:hover {
    opacity: 0.85;
}

/* Certification logo size */
.certification img {
    width: 50px; /* Ukuran tetap */
    height: auto;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer-section .delivery-partners {
        grid-template-columns: repeat(3, 50px); /* Sedikit lebih kecil di mobile */
        justify-content: center;
    }

    .footer-section .partner-logo {
        width: 50px;
        height: 25px;
    }

    .footer-section .partner-logo img {
        height: 15px;
    }
}

/* Description Section Styling */
.description-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.description-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.description-content h2 {
    font-size: 2.5em;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.description-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff4d4d;
}

.description-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
    text-align: justify;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.key-feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.key-feature:hover {
    transform: translateY(-5px);
}

.feature-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #ff4d4d;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 1.1em;
    color: #666;
}

.certifications {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.certifications h3 {
    font-size: 1.8em;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.certifications ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.certifications li {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #4a4a4a;
    transition: all 0.3s ease;
}

.certifications li:hover {
    background: #ff4d4d;
    color: white;
    transform: translateX(5px);
}

/* Animasi */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.description-content {
    animation: fadeIn 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .description-content {
        padding: 20px;
    }

    .description-content h2 {
        font-size: 2em;
    }

    .key-features {
        grid-template-columns: 1fr;
    }

    .certifications ul {
        grid-template-columns: 1fr;
    }
}

/* Hover Effects */
.description-text p:hover {
    color: #2a2a2a;
}

.key-feature:hover .feature-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Additional Visual Elements */
.description-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #ff4d4d;
    border-radius: 25px;
    opacity: 0.1;
    pointer-events: none;
}

/* Custom Scrollbar */
.description-text {
    scrollbar-width: thin;
    scrollbar-color: #ff4d4d #f1f1f1;
}

.description-text::-webkit-scrollbar {
    width: 8px;
}

.description-text::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.description-text::-webkit-scrollbar-thumb {
    background: #ff4d4d;
    border-radius: 4px;
}

.branch-website {
    display: inline-block;
    font-size: 0.9em;
    color: #0066cc;
    text-decoration: none;
    margin-top: 5px;
}

.branch-website:hover {
    text-decoration: underline;
}

/* Branches Section Styling */
.other-branches {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

#branches-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.branch-card {
    display: none;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.branch-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.branch-card p {
    color: #666;
    margin: 10px 0;
    line-height: 1.5;
}

.branch-card a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.branch-card a:hover {
    color: #c0392b;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 20px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-link:hover {
    background-color: #c0392b;
}

.page-numbers {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .other-branches {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .branches-grid {
        grid-template-columns: 1fr;
    }

    .branch-card {
        padding: 20px;
    }
}

/* Tambahkan ke bagian footer styling yang sudah ada */
.latest-branches {
    margin-top: 15px;
}

.latest-branches p {
    margin: 5px 0;
}

.latest-branches a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.latest-branches a:hover {
    color: #e74c3c;
}