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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.pinjampasti-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.pinjampasti-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
}

.pinjampasti-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pinjampasti-logo {
    width: 50px;
    height: 50px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.pinjampasti-brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1FBE8A;
    margin: 0;
    white-space: nowrap;
}

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

.pinjampasti-nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.pinjampasti-nav-menu a:hover,
.pinjampasti-nav-active {
    color: #1FBE8A;
}

.pinjampasti-nav-menu a:hover::after {
    width: 100%;
}

.pinjampasti-nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #1FBE8A, #16A374);
    transition: width 0.3s ease;
}

.pinjampasti-nav-active::after {
    width: 100%;
}

.pinjampasti-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.pinjampasti-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Main Content */
.pinjampasti-main {
    margin-top: 80px;
}

/* Contact Hero Section */
.pinjampasti-contact-hero {
    background: linear-gradient(135deg, #1FBE8A 0%, #17A576 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.pinjampasti-hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pinjampasti-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pinjampasti-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.pinjampasti-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pinjampasti-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Information */
.pinjampasti-contact-info {
    padding: 4rem 0;
    background: white;
}

.pinjampasti-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.pinjampasti-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pinjampasti-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pinjampasti-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pinjampasti-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1FBE8A 0%, #17A576 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pinjampasti-info-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.pinjampasti-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pinjampasti-primary-contact {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1FBE8A;
}

.pinjampasti-secondary-contact {
    font-size: 1rem;
    color: #666;
}

.pinjampasti-contact-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Contact Form */
.pinjampasti-contact-form {
    padding: 4rem 0;
    background: #f8f9fa;
}

.pinjampasti-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pinjampasti-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pinjampasti-form-header h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.pinjampasti-form-header p {
    font-size: 1.1rem;
    color: #666;
}

.pinjampasti-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pinjampasti-form-group {
    margin-bottom: 1.5rem;
}

.pinjampasti-form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.pinjampasti-form-group input,
.pinjampasti-form-group select,
.pinjampasti-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.pinjampasti-form-group input:focus,
.pinjampasti-form-group select:focus,
.pinjampasti-form-group textarea:focus {
    outline: none;
    border-color: #1FBE8A;
}

.pinjampasti-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.pinjampasti-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pinjampasti-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pinjampasti-checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.pinjampasti-link {
    color: #1FBE8A;
    text-decoration: none;
}

.pinjampasti-link:hover {
    text-decoration: underline;
}

.pinjampasti-form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1FBE8A 0%, #17A576 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pinjampasti-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 190, 138, 0.3);
}

/* Office Map */
.pinjampasti-office-map {
    padding: 4rem 0;
    background: white;
}

.pinjampasti-map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pinjampasti-address-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.pinjampasti-address-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1FBE8A;
    margin-bottom: 1.5rem;
}

.pinjampasti-address-details {
    margin-bottom: 2rem;
}

.pinjampasti-address-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

.pinjampasti-address-details strong {
    color: #1FBE8A;
}

.pinjampasti-transport-info h4 {
    color: #333;
    margin-bottom: 1rem;
}

.pinjampasti-transport-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pinjampasti-transport-info li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.pinjampasti-transport-info li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1FBE8A;
    font-weight: bold;
}

.pinjampasti-map-actions {
    display: flex;
    gap: 1rem;
}

.pinjampasti-btn-secondary,
.pinjampasti-btn-outline {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pinjampasti-btn-secondary {
    background: #1FBE8A;
    color: white;
}

.pinjampasti-btn-secondary:hover {
    background: #17A576;
    transform: translateY(-2px);
}

.pinjampasti-btn-outline {
    background: transparent;
    color: #1FBE8A;
    border: 2px solid #1FBE8A;
}

.pinjampasti-btn-outline:hover {
    background: #1FBE8A;
    color: white;
}

.pinjampasti-map-container {
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.pinjampasti-map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pinjampasti-map-embed {
    text-align: center;
    color: #666;
}

/* Business Hours */
.pinjampasti-business-hours {
    padding: 4rem 0;
    background: #f8f9fa;
}

.pinjampasti-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pinjampasti-hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pinjampasti-hours-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1FBE8A 0%, #17A576 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pinjampasti-hours-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
}

.pinjampasti-schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.pinjampasti-day {
    font-weight: 600;
    color: #333;
}

.pinjampasti-time {
    font-weight: bold;
    color: #1FBE8A;
}

.pinjampasti-closed .pinjampasti-time {
    color: #999;
}

.pinjampasti-24-7 .pinjampasti-time {
    color: #e74c3c;
    font-size: 1.2rem;
}

.pinjampasti-quick-response {
    text-align: center;
    margin: 1rem 0;
}

.pinjampasti-response-badge {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pinjampasti-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pinjampasti-contact-btn {
    background: #1FBE8A;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pinjampasti-contact-btn:hover {
    background: #17A576;
    transform: translateY(-2px);
}

.pinjampasti-whatsapp {
    background: #25D366;
}

.pinjampasti-whatsapp:hover {
    background: #20B558;
}

.pinjampasti-emergency-info {
    text-align: center;
    margin: 1rem 0;
}

.pinjampasti-emergency-desc {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pinjampasti-emergency-contact {
    margin: 1rem 0;
}

.pinjampasti-emergency-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.pinjampasti-emergency-label {
    font-size: 0.9rem;
    color: #666;
}

.pinjampasti-emergency-note {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.pinjampasti-emergency-note p {
    color: #856404;
    font-size: 0.9rem;
    text-align: left;
}

/* Branch Offices */
.pinjampasti-branch-offices {
    padding: 4rem 0;
    background: white;
}

.pinjampasti-branch-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pinjampasti-branch-intro p {
    font-size: 1.1rem;
    color: #666;
}

.pinjampasti-branch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pinjampasti-branch-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pinjampasti-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pinjampasti-branch-header {
    margin-bottom: 1.5rem;
}

.pinjampasti-branch-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.pinjampasti-branch-type {
    background: #1FBE8A;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pinjampasti-branch-address {
    margin-bottom: 1rem;
}

.pinjampasti-branch-address p {
    margin-bottom: 0.3rem;
    color: #333;
}

.pinjampasti-branch-contact {
    margin-bottom: 1.5rem;
}

.pinjampasti-branch-contact p {
    margin-bottom: 0.5rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pinjampasti-branch-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pinjampasti-service-tag {
    background: rgba(31, 190, 138, 0.1);
    color: #1FBE8A;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pinjampasti-branch-expansion {
    background: linear-gradient(135deg, #1FBE8A 0%, #17A576 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.pinjampasti-expansion-info h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pinjampasti-expansion-info p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.pinjampasti-upcoming-branches {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pinjampasti-upcoming-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section */
.pinjampasti-cta {
    background: linear-gradient(135deg, #1FBE8A 0%, #17A576 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.pinjampasti-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pinjampasti-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pinjampasti-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pinjampasti-btn-primary {
    background: white;
    color: #1FBE8A;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pinjampasti-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Footer */
.pinjampasti-footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.pinjampasti-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.pinjampasti-footer-section h4 {
    color: #1FBE8A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.pinjampasti-footer-section ul {
    list-style: none;
}

.pinjampasti-footer-section ul li {
    margin-bottom: 0.5rem;
}

.pinjampasti-footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pinjampasti-footer-section ul li a:hover {
    color: #1FBE8A;
}

.pinjampasti-footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.pinjampasti-footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

.pinjampasti-footer-bottom p {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pinjampasti-nav-menu {
        display: none;
    }

    .pinjampasti-menu-toggle {
        display: flex;
    }

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

    .pinjampasti-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .pinjampasti-info-grid {
        grid-template-columns: 1fr;
    }

    .pinjampasti-form-row {
        grid-template-columns: 1fr;
    }

    .pinjampasti-map-content {
        grid-template-columns: 1fr;
    }

    .pinjampasti-hours-grid {
        grid-template-columns: 1fr;
    }

    .pinjampasti-branch-grid {
        grid-template-columns: 1fr;
    }

    .pinjampasti-footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .pinjampasti-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pinjampasti-upcoming-branches {
        flex-direction: column;
        gap: 0.5rem;
    }
} 