/**
 * Company Profile Styles
 * Notaris & PPAT Tracking System
 * Based on index.html template
 */

:root {
    --primary: #1B3A4B;
    --primary-dark: #0F1F28;
    --primary-light: #2D5A6B;
    --gold: #9C7C38;
    --gold-light: #B8964F;
    --gold-dark: #7A5F2E;
    --cream: #F7F4EF;
    --white: #fcf7eb;
    --text: #2D2D2D;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --border: #E0E0E0;
    /*--cream: #F7F4EF;
    --white: #fcf7eb;*/
    /*--white: #F4F2ED;
    --cream: #F1ECE4;*/
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Header */
header {
    background: var(--cream);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
}

nav {
    display: flex;
    gap: 36px;
}

nav a {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

.btn-hubungi {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold);
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 58, 75, 0.2);
}

.btn-hubungi:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 58, 75, 0.35);
}

/* Hero */
.hero {
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 170px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(156, 124, 56, 0.12) 0%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--cream);
    clip-path: polygon(0 70%, 100% 100%, 100% 100%, 0 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(156, 124, 56, 0.15);
    color: var(--gold-light);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(156, 124, 56, 0.3);
}

.hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
    font-weight: 500;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(156, 124, 56, 0.35);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(156, 124, 56, 0.5);
}

.btn-layanan {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-layanan:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.hero-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card h3 svg {
    color: var(--gold);
}

.quick-links {
    display: grid;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--cream);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--gold);
    transform: translateX(6px);
}

.quick-link:hover .quick-link-text {
    color: var(--primary-dark);
}

.quick-link:hover .quick-link-sub {
    color: var(--primary-dark);
}

.quick-link-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.quick-link:hover .quick-link-icon {
    background: var(--white);
    color: var(--primary);
}

.quick-link-text {
    font-weight: 600;
    font-size: 14px;
}

.quick-link-sub {
    font-size: 12px;
    opacity: 0.7;
}

/* Section */
.section {
    padding: 90px 0;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    color: var(--primary);
}

/* Masalah */
.masalah {
    background: var(--cream);
}

.masalah-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.masalah-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.masalah-card:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.masalah-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.masalah-card h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 6px;
}

.masalah-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.masalah-closing {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    color: var(--white);
}

.masalah-closing p {
    font-size: 17px;
    margin: 0;
}

/* Testimoni */
.testimoni {
    background: var(--white);
    padding: 90px 0;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}


.testimoni-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}

.testimoni-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.testimoni-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimoni-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimoni-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
}

.testimoni-info {
    flex: 1;
}

.testimoni-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}

.testimoni-layanan {
    font-size: 13px;
    color: var(--text-muted);
}

.testimoni-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    color: var(--white);
}

.testimoni-cta p {
    font-size: 16px;
    margin-bottom: 18px;
}

.btn-testi-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-testi-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(156, 124, 56, 0.4);
}

/* Layanan */
.layanan {
    background: var(--white);
    padding: 80px 0;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Layanan Cards - Overwrite dengan Corak Clear */
.layanan-card {
    background: linear-gradient(135deg, var(--cream), var(--white) 100%) !important;
    padding: 32px 30px !important;
    border-radius: 18px !important;
    border: 2px solid rgba(156, 124, 56, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

/* CORAK - Lebih Clear dan Visible */
.layanan-card::before {
    content: '' !important;
    position: absolute !important;
    top: -100px !important;
    right: -100px !important;
    width: 200px !important;
    height: 200px !important;
    background: radial-gradient(circle, rgba(156, 124, 56, 0.1) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    z-index: 0 !important;
    transition: all 0.6s ease !important;
}

/* Bottom accent line */
.layanan-card::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 5px !important;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--gold) 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.layanan-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 60px rgba(27, 58, 75, 0.15) !important;
    border-color: rgba(156, 124, 56, 0.4) !important;
}

.layanan-card:hover::before {
    transform: scale(1.4) !important;
    background: radial-gradient(circle, rgba(156, 124, 56, 0.15) 0%, transparent 70%) !important;
}

.layanan-card:hover::after {
    opacity: 1 !important;
}

.layanan-card * {
    position: relative !important;
    z-index: 1 !important;
}

.layanan-card h4 {
    font-size: 21px !important;
    color: var(--primary) !important;
    margin-bottom: 14px !important;
    font-weight: 700 !important;
}

.layanan-card > p {
    font-size: 15px !important;
    color: var(--text-light) !important;
    margin-bottom: 0 !important;
    line-height: 1.6 !important;
    flex-grow: 1 !important;
}

.layanan-benefit {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.layanan-benefit svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.layanan-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--gold);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 124, 88, 0.2);
}

.layanan-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}

.layanan-btn:hover {
    background: var(--primary-dark);
    transform: translateX(4px);
}

/* Alur */
.alur {
    background: var(--primary);
    padding: 90px 0;
}

.alur .section-tag {
    color: var(--gold);
}

.alur .section-title {
    color: var(--white);
}

.alur-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.alur-item {
    text-align: center;
    position: relative;
}

.alur-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
    font-family: 'Cormorant Garamond', serif;
}

.alur-item h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
}

.alur-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.alur-arrow {
    position: absolute;
    top: 30px;
    right: -18px;
    color: var(--gold);
}

.alur-item:last-child .alur-arrow {
    display: none;
}

/* Tentang */
.tentang {
    background: var(--cream);
}

.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.tentang-img {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    box-shadow: 0 30px 80px rgba(27, 58, 75, 0.25);
}

.tentang-img-inner {
    text-align: center;
}

.tentang-img svg {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    opacity: 0.85;
}

.tentang-img-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
}

.tentang-img-title {
    font-size: 14px;
    opacity: 0.7;
}

/* Photo mode */
.tentang-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tentang-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tentang-photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    text-align: center;
}

.tentang-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tentang-badge strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.tentang-badge span {
    font-size: 13px;
    display: block;
    margin-top: 4px;
}

.tentang-content h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.tentang-narasi {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.8;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.tentang-list {
    list-style: none;
}

.tentang-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
}

.tentang-list svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

/* CTA */
.cta {
    background: var(--white);
    padding: 90px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(145deg, var(--gold), var(--gold-light));
    border-radius: 24px;
    padding: 60px;
}

.cta-box h2 {
    font-size: 34px;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.cta-box p {
    font-size: 17px;
    color: var(--primary-dark);
    opacity: 0.85;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--gold);
    padding: 18px 34px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(15, 31, 40, 0.35);
}

/* Footer - Gradient like header */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(156, 124, 56, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    color: var(--white);
}

.footer-brand p {
    color: var(--white);
    font-size: 14px;
    margin-top: 14px;
    max-width: 270px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    color: var(--cream);
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
}

.footer-contact-item svg {
    display: none;
}

.footer-bottom {
    border-top: 1px solid rgba(156, 124, 56, 0.15);
    padding-top: 24px;
    text-align: center;
    color: var(--cream);
    font-size: 14px;
}

/* Tracking Section - Overwrite Previous */
.tracking {
    background: var(--cream);
    padding: 100px 0;
    text-align: center;
}

.tracking-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.tracking-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(27, 58, 75, 0.3);
}

.tracking-wrapper h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.tracking-wrapper p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-track {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--cream);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(27, 58, 75, 0.3);
    border: none;
}

.btn-track:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 58, 75, 0.4);
}

.btn-track svg {
    flex-shrink: 0;
}

.tracking-form {
    background: var(--white);
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.tracking-input-group {
    display: flex;
    gap: 12px;
}

.tracking-input-group input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.tracking-input-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-track {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold);
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-track:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 58, 75, 0.3);
}

.tracking-result {
    margin-top: 24px;
}

.result-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.result-nomor {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

.result-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    gap: 12px;
}

.info-row .label {
    font-weight: 600;
    color: var(--text-muted);
    min-width: 100px;
}

.info-row .value {
    color: var(--text);
}

.btn-detail {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.result-empty,
.result-error {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 10px;
}

.result-empty {
    color: var(--text-muted);
}

.result-error {
    color: var(--danger);
}

.loading {
    text-align: center;
    padding: 32px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 950px) {
    .container {
        padding: 0 20px;
    }
    
    nav {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .trust-badges {
        justify-content: center;
    }

    .masalah-grid {
        grid-template-columns: 1fr;
    }

    .layanan-grid {
        grid-template-columns: 1fr;
    }

    .tracking-wrapper {
        padding: 0 15px;
    }

    .tracking-icon {
        width: 70px;
        height: 70px;
    }

    .tracking-wrapper h2 {
        font-size: 22px;
    }

    .tracking-wrapper p {
        font-size: 14px;
    }

    .btn-track {
        padding: 16px 36px;
        font-size: 15px;
        width: 100%;
        max-width: 320px;
    }

    .alur-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tentang-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .tentang-img {
        position: relative;
        margin: 0 auto;
        overflow: visible;
    }
    
    .tentang-img svg {
        width: 60px;
        height: 60px;
    }
    
    .tentang-img-name {
        font-size: 20px;
    }
    
    .tentang-img-title {
        font-size: 13px;
    }
    
    /* Badge keluar dari container - tidak ter-crop */
    .tentang-badge {
        position: absolute;
        bottom: -15px;
        right: -15px;
        padding: 16px 20px;
        border-radius: 12px;
        z-index: 10;
        text-align: center;
        min-width: 100px;
    }
    
    .tentang-badge strong {
        font-size: 28px;
        line-height: 1;
        display: block;
    }
    
    .tentang-badge span {
        font-size: 12px;
        display: block;
        margin-top: 4px;
        white-space: nowrap;
    }
    
    /* Photo mode - foto fit in container dengan margin */
    .tentang-photo {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }
    
    .tentang-photo img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .tentang-photo-info {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        padding: 15px;
        background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
        text-align: center;
        z-index: 2;
    }
    
    /* Icon mode */
    .tentang-img-inner {
        text-align: center;
        z-index: 2;
        position: relative;
        padding: 20px;
    }
    
    /* Tracking button centered */
    .tracking-wrapper {
        padding: 0 15px;
    }
    
    .tracking-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 25px;
    }
    
    .tracking-wrapper h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .tracking-wrapper p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .btn-track {
        padding: 16px 36px;
        font-size: 15px;
        margin: 0 auto;
        display: inline-flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimoni-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .trust-badges {
        flex-direction: column;
    }

    .layanan-grid,
    .alur-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .tracking-input-group {
        flex-direction: column;
    }
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quick-link:hover {
    background: var(--cream);
    border-color: var(--gold);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(156, 124, 56, 0.12);
}

.quick-link-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-link-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 2px;
}

.quick-link-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.layanan-card.premium {
    background: linear-gradient(135deg, white 0%, #faf8f5 100%);
    position: relative;
    padding: 35px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: 1px solid rgba(156, 124, 56, 0.15);
    height: 100%;
    
    /* Corak/Pattern - Visible by default */
}

.layanan-card.premium::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(156, 124, 56, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.6s ease;
}

/* Bottom accent line */
.layanan-card.premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.layanan-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(27, 58, 75, 0.12);
    border-color: rgba(156, 124, 56, 0.3);
}

.layanan-card.premium:hover::before {
    transform: scale(1.3);
    background: radial-gradient(circle, rgba(156, 124, 56, 0.1) 0%, transparent 70%);
}

.layanan-card.premium:hover::after {
    opacity: 1;
}

.layanan-card.premium * {
    position: relative;
    z-index: 1;
}

.layanan-icon {
    display: none;
}

/* Hide "Hubungi Kami" button - cleaner design */
.layanan-btn-mini {
    display: none;
}

.testimoni-avatar {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(156, 124, 56, 0.3);
}

.tracking-box {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.12);
    border-top: 6px solid var(--gold);
    max-width: 850px;
    margin: 0 auto;
}

.tracking-input-group {
    display: flex;
    background: #f8f8f8;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid #eee;
    overflow: hidden;
}

.tracking-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 25px;
    font-size: 16px;
    outline: none;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.footer-links li a {
    color: var(--white);
    transition: all 0.3s;
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-contact li {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--white);
}

.footer-hours li {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

.hero-card-hours {
    margin-top: 25px;
    background: rgba(21, 21, 20, 0.1);
    border: 1px solid rgba(156, 124, 56, 0.2);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
}

.hero-card-hours svg {
    color: var(--gold-dark);
}

/* Animations Supp. */
.hero-inner>* {
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.hero-content {
    animation-delay: 0.1s;
}

.hero-card {
    animation-delay: 0.3s;
}