.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles (assuming you have existing navbar styles) */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    height: 50px;
}

.icon-contact {
    height: 120px; /* DIPERBESAR: dari 380px menjadi 120px (lebih besar dari sebelumnya) */
    width: auto;
    max-width: 180px; /* DIPERBESAR: dari 350px menjadi 180px */
    object-fit: contain;
    transition: filter 0.3s;
    margin: 0; /* DIHILANGKAN: margin untuk jarak yang lebih rapat */
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: #0ea5e9;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0ea5e9;
    border-radius: 1px;
}

/* Hero Section */
.contact-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #3b82f6 100%);
}

.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title span {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Contact Section */
/* === CONTACT SECTION === */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    min-height: 100vh;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-title span {
    color: #0ea5e9;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-cards {
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: 520px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.phone-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.email-icon {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.address-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.time-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    word-break: break-word;
    white-space: normal;
}

.contact-details p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    word-break: break-word;
    white-space: normal;
}

/* WhatsApp Contact Card */
.whatsapp-contact-wrapper {
    position: sticky;
    top: 2rem;
}

.whatsapp-contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.whatsapp-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25d366, #128c7e, #25d366);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%,
    100% {
        background-position: 200% 0;
    }
    50% {
        background-position: -200% 0;
    }
}

.whatsapp-header {
    padding: 3rem 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(
        135deg,
        rgba(37, 211, 102, 0.05),
        rgba(18, 140, 126, 0.05)
    );
}

.whatsapp-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
}

.whatsapp-logo::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-contact-card:hover .whatsapp-logo::after {
    opacity: 1;
}

.whatsapp-logo svg {
    width: 40px;
    height: 40px;
}

.whatsapp-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.whatsapp-title span {
    color: #25d366;
}

.whatsapp-title p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.whatsapp-content {
    padding: 0 3rem 2rem;
}

.chat-preview {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.chat-bubble {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.chat-avatar svg {
    width: 20px;
    height: 20px;
}

.chat-message {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 0 16px 16px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.chat-message::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent white transparent transparent;
}

.chat-message p {
    margin: 0 0 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.chat-time {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.whatsapp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: #25d366;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.whatsapp-action {
    padding: 2rem 3rem 3rem;
    background: linear-gradient(
        135deg,
        rgba(37, 211, 102, 0.02),
        rgba(18, 140, 126, 0.02)
    );
}

.whatsapp-btn {
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.whatsapp-btn::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;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-content.loading {
    gap: 1rem;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn-text {
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .arrow-icon {
    transform: translate(4px, -4px);
}

.contact-info-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 211, 102, 0.1);
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
}

.contact-info-footer svg {
    width: 18px;
    height: 18px;
    color: #25d366;
}

.response-time {
    font-size: 0.875rem;
    color: #64748b !important;
    font-weight: 500 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .whatsapp-contact-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .whatsapp-header {
        padding: 2rem 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .whatsapp-logo {
        width: 60px;
        height: 60px;
    }

    .whatsapp-logo svg {
        width: 30px;
        height: 30px;
    }

    .whatsapp-title h2 {
        font-size: 1.5rem;
    }

    .whatsapp-content {
        padding: 0 2rem 1.5rem;
    }

    .whatsapp-action {
        padding: 1.5rem 2rem 2rem;
    }

    .whatsapp-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-item {
        flex-direction: row;
        justify-content: center;
        padding: 0.75rem;
    }

    .feature-item svg {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }

    .contact-card {
        padding: 1.5rem;
        width: 300px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0;
    }

    .whatsapp-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .whatsapp-content {
        padding: 0 1.5rem 1rem;
    }

    .whatsapp-action {
        padding: 1rem 1.5rem 1.5rem;
    }

    .whatsapp-btn {
        padding: 1.25rem;
    }

    .btn-title {
        font-size: 1rem;
    }

    .btn-subtitle {
        font-size: 0.8rem;
    }

    .whatsapp-contact-card {
        border-radius: 16px;
    }

    .only-mobile {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
        font-size: 0.85rem;
        color: #64748b;
    }
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: white;
}

.map-container {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-align: center;
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.map-icon svg {
    width: 40px;
    height: 40px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    pointer-events: none; /* Disable iframe interactions untuk allow click through */
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.map-placeholder:hover .map-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.map-click-hint {
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.map-placeholder:hover .map-click-hint {
    transform: translateY(0);
}

.map-click-hint svg {
    width: 18px;
    height: 18px;
    color: #3b82f6;
}

/* Loading state */
.map-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.map-placeholder.loaded::before {
    opacity: 0;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .map-placeholder {
        height: 300px;
    }

    .map-click-hint {
        padding: 10px 16px;
        font-size: 13px;
    }

    .map-click-hint svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .map-placeholder {
        height: 250px;
        border-radius: 8px;
    }

    .map-click-hint span {
        display: none; /* Hide text on very small screens, show only icon */
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Footer */
/* .footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-container {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .form-container {
        padding: 1.5rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .map-placeholder {
        height: 300px;
    }

    .cta-section {
        padding: 3rem 0;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}
.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}
.contact-card:nth-child(3) {
    animation-delay: 0.3s;
}
.contact-card:nth-child(4) {
    animation-delay: 0.4s;
}

.form-container {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
