:root {
            --primary: #1a1a1a;
            --text-dark: #2c2c2c;
            --text-muted: #8b8b8b;
            --bg-light: #fdfbf7;
            --border-color: #f0e9dc;
            --card-bg: #fff;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            margin: 0;
            padding: 0;
        }

        .contact-container {
            width: 90%;
            max-width: 1600px;
            margin: 40px auto 80px;
            position: relative;
            z-index: 10;
        }

        .main-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── CARD STYLES ── */
        .card {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid var(--border-color);
            margin-bottom: 24px;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-title i {
            color: #d4af37;
        }

        .card-subtitle {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0 0 24px;
        }

        /* Form Kirim Pesan */
        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        @media (max-width: 768px) {
            .contact-form {
                grid-template-columns: 1fr;
            }
        }
        .form-group {
            position: relative;
        }
        .form-group.full {
            grid-column: 1 / -1;
        }
        .form-group i {
            position: absolute;
            left: 16px;
            top: 15px;
            color: var(--text-muted);
            font-size: 14px;
        }
        .form-control {
            width: 100%;
            padding: 14px 16px 14px 40px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: transparent;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            color: var(--text-dark);
            outline: none;
            transition: all 0.2s;
        }
        .form-control:focus {
            border-color: #d1d5db;
            background: #fff;
        }
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .btn-submit {
            background: #2c2c2c;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 24px auto 16px;
            transition: all 0.2s;
        }
        .btn-submit:hover {
            background: #000;
        }
        .privacy-note {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
        }

        /* Peta Lokasi */
        .map-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        .map-link {
            font-size: 13px;
            color: var(--text-muted);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .map-wrapper {
            width: 100%;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            background: #e5e7eb;
            position: relative;
        }
        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .map-marker {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }
        .map-marker i {
            color: #78350f;
            font-size: 20px;
        }

        /* Pertanyaan Umum (FAQ) */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .faq-item {
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.2s;
        }
        .faq-item:hover {
            background: #fff;
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            background: none;
            border: none;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            cursor: pointer;
            text-align: left;
            transition: all 0.2s;
        }
        .faq-question:hover {
            color: var(--text-dark);
        }
        .faq-question i {
            color: var(--text-muted);
            transition: transform 0.3s ease;
            font-size: 12px;
        }
        .faq-question.active {
            color: var(--text-dark);
            font-weight: 600;
        }
        .faq-question.active i {
            transform: rotate(180deg);
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
            font-size: 12.5px;
            color: var(--text-muted);
            line-height: 1.6;
            background: #fff;
            box-sizing: border-box;
        }
        .faq-question.active + .faq-answer {
            padding: 0 20px 14px 20px;
            max-height: 250px;
            transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
        }
        .btn-view-all {
            display: block;
            width: max-content;
            margin: 24px auto 0;
            padding: 8px 24px;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-view-all:hover {
            background: #fff;
            color: var(--text-dark);
        }

        /* ── SIDEBAR STYLES ── */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .sidebar-card {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: background 0.2s;
        }
        .sidebar-card:hover {
            background: #fff;
        }
        .sidebar-card-content {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .sidebar-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #d4af37;
            flex-shrink: 0;
            background: #fff;
        }
        .sidebar-text h4 {
            font-size: 14px;
            font-weight: 600;
            margin: 0 0 4px;
            color: var(--text-dark);
        }
        .sidebar-text p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.5;
        }
        .sidebar-arrow {
            color: var(--text-muted);
            font-size: 12px;
        }

        /* Social Icons */
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 4px;
        }
        .social-icons i {
            font-size: 16px;
            color: var(--text-dark);
        }

        /* Janji Kunjungan Card */
        .visit-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            margin-top: 8px;
        }
        .visit-img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }
        .visit-content {
            padding: 20px;
        }
        .visit-content h4 {
            font-size: 14px;
            font-weight: 600;
            margin: 0 0 8px;
            color: var(--text-dark);
        }
        .visit-content p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0 0 16px;
            line-height: 1.5;
        }
        .btn-visit {
            background: #2c2c2c;
            color: #fff;
            border: none;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-visit:hover {
            background: #000;
        }

        /* ── RESPONSIVE MEDIA QUERIES (MOBILE OVERRIDES) ── */
        .map-wrapper {
            height: 350px !important;
        }

        @media (max-width: 768px) {
            .contact-container {
                width: 100% !important;
                padding: 0 16px !important;
                margin: 20px auto 40px !important;
                box-sizing: border-box !important;
            }
            .card, .sidebar-card {
                padding: 20px !important;
                margin-bottom: 16px !important;
                border-radius: 14px !important;
                box-sizing: border-box !important;
            }
            .card-title {
                font-size: 18px !important;
                margin-bottom: 8px !important;
            }
            .card-subtitle {
                font-size: 12.5px !important;
                margin-bottom: 16px !important;
            }
            .map-wrapper {
                height: 250px !important;
            }
            .faq-question {
                padding: 12px 14px !important;
                font-size: 12px !important;
            }
            .faq-answer {
                padding: 0 14px !important;
                font-size: 11.5px !important;
            }
            .faq-question.active + .faq-answer {
                padding: 0 14px 12px 14px !important;
            }
            .btn-view-all {
                margin-top: 16px !important;
            }
            .sidebar-card-content {
                gap: 12px !important;
            }
            .sidebar-icon {
                width: 36px !important;
                height: 36px !important;
                font-size: 14px !important;
            }
            .sidebar-text h4 {
                font-size: 13px !important;
            }
            .sidebar-text p {
                font-size: 11.5px !important;
            }
            .visit-content {
                padding: 16px !important;
            }
            .visit-content h4 {
                font-size: 13.5px !important;
            }
            .visit-content p {
                font-size: 11.5px !important;
            }
        }

        @media (max-width: 576px) {
            .card, .sidebar-card {
                padding: 16px !important;
            }
            .btn-submit {
                width: 100% !important;
                border-radius: 8px !important;
                padding: 12px 16px !important;
                margin-top: 16px !important;
            }
        }