/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #fefefe;
    --blue-dark: #2563eb;
    --blue-darker: #1e40af;

    /* HERO LIGHT GRADIENT */
    --blue-hero-start: #dbeafe;
    --blue-hero-mid: #c7d2fe;
    --blue-hero-end: #e2e8f0;

    --green: #22c55e;
    --green-dark: #16a34a;

    --text-dark: #1e293b;
    --text-mid: #475569;
    --text-muted: #64748b;

    --border: #e2e8f0;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: #ffffff;
    padding: 4rem 6% 4rem;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}

/* subtle glow */
.hero::before {
    display: none;
}

/* wave bottom */
.hero::after {
    display: none;
}

.hero-container {
    max-width: 1400px;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    animation: fadeUpIn 0.7s ease both;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- HEADING: hitam/gelap sesuai screenshot ---- */
.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ---- PARAGRAF: warna gelap/abu ---- */
.hero-content p {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 95%;
}

.hero-buttons {
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

.hero-note {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.hero-note strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ---- ILUSTRASI: card putih dengan bayangan ---- */
.hero-illustration {
    flex: 1;
    max-width: 52%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeUpIn 0.9s 0.15s ease both;
    opacity: 0;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    background: var(--white);
    padding: 1.5rem;
}

/* ============================================
   HERO BUTTONS — disesuaikan untuk latar terang
   ============================================ */
.btn-primary {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
    text-align: center;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--blue-darker);
    transform: translateY(-1px);
}

/* In non-hero contexts, primary is blue */
.services .btn-primary,
.drop-point .btn-primary,
.features .btn-primary,
.stats .btn-primary,
.drop-toggle .btn-primary {
    background: var(--blue-primary);
    color: var(--blue-primary);
}

.services .btn-primary:hover,
.drop-point .btn-primary:hover,
.features .btn-primary:hover,
.stats .btn-primary:hover,
.drop-toggle .btn-primary:hover {
    background: var(--blue-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 0.75rem 1.75rem;
    border: 1.5px solid rgba(30, 64, 175, 0.35);
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    border-color: var(--blue-dark);
    background: rgba(37, 99, 235, 0.06);
}

.btn-whatsapp {
    background: var(--green);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 7px;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   TRACKING CARD - Overlapping hero
   ============================================ */
.tracking-wrap {
    padding: 0 6%;
    margin-top: -48px;
    position: relative;
    z-index: 20;
    margin-bottom: 1rem;
}

.tracking-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 2.25rem 1.75rem;
    max-width: 560px;
    box-shadow: 0 20px 60px rgba(13, 31, 107, 0.2);
}

.tracking-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.track-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.track-inputs input,
.track-inputs select {
    padding: 0.7rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-dark);
    background: var(--white);
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    transition: border-color 0.2s;
    width: 100%;
    appearance: none;
}

.track-inputs input::placeholder {
    color: #94a3b8;
}

.track-inputs input:focus,
.track-inputs select:focus {
    outline: none;
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-track-pkg {
    width: 100%;
    padding: 0.825rem;
    background: var(--blue-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.925rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    margin-bottom: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-track-pkg:hover {
    background: var(--blue-darker);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-track {
    padding: 0 2rem;
    height: 50px;
    background: var(--blue-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    white-space: nowrap;
}

.btn-track:hover {
    background: var(--blue-darker);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-track svg {
    width: 18px;
    height: 18px;
}

.track-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

/* ============================================
   TRACKING HERO (tracking.php)
   ============================================ */
.tracking-hero {
    background: linear-gradient(135deg,
            #dbeafe 0%,
            #e0e7ff 40%,
            #bfdbfe 70%,
            #e2e8f0 100%);
    padding: 3.5rem 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tracking-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(147, 197, 253, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.tracking-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.tracking-hero p {
    font-size: 1rem;
    color: var(--text-mid);
    position: relative;
    z-index: 1;
}

/* ============================================
   TRACKING FORM CARD (tracking.php)
   ============================================ */
.tracking-form-section {
    padding: 2.5rem 6%;
    background: var(--bg-light);
}

.tracking-card-full {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.tracking-form-row {
    display: grid;
    grid-template-columns: 1fr 0.5fr auto;
    gap: 1rem;
    align-items: flex-end;
}

.tracking-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tracking-form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.tracking-form-group input,
.tracking-form-group select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    height: 50px;
}

.tracking-form-group input:focus,
.tracking-form-group select:focus {
    outline: none;
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.tracking-form-group input::placeholder {
    color: #a0aec0;
    font-size: 0.9rem;
}

.tracking-hint {
    margin-top: 0.875rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tracking-hint svg {
    width: 15px;
    height: 15px;
    color: var(--blue-dark);
    flex-shrink: 0;
}

/* ============================================
   TRACKING RESULT / EMPTY STATE
   ============================================ */
.tracking-result-section {
    padding: 0 6% 3rem;
    background: var(--bg-light);
}

.tracking-result-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    text-align: center;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    gap: 1rem;
}

.empty-state svg,
.empty-state .empty-icon {
    width: 80px;
    height: 80px;
    opacity: 0.25;
    color: var(--text-muted);
}

.empty-state h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-muted);
}

.empty-state p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--white);
    padding: 5rem 6%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 36px;
    height: 1.5px;
    background: var(--blue-dark);
    border-radius: 2px;
    opacity: 0.5;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-header p {
    font-size: 0.975rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    padding: 1.75rem;
}

.service-card:hover {
    border-color: var(--blue-dark);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-5px);
}

.service-card-top {
    padding: 1.5rem 1.5rem 0.75rem;
}

.service-icon-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-dot.green { background: #dcfce7; }
.service-dot.blue  { background: #dbeafe; }
.service-dot.red   { background: #fee2e2; }

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 0;
}

.service-card-img {
    width: calc(100% + 3.5rem);
    margin: 0 -1.75rem;
    height: 160px;
    object-fit: cover;
    display: block;
}

.service-img-placeholder {
    width: calc(100% + 3.5rem);
    margin: 0 -1.75rem;
    height: 160px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.service-card-bottom {
    padding: 1rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border-top: 1px solid var(--border);
    margin-top: 0.75rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

/* ============================================
   DROP POINT SECTION
   ============================================ */
.drop-point {
    background: var(--bg-light);
    padding: 5rem 6%;
}

.drop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.drop-card {
    width: 100%;
    text-align: center;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    background: var(--white);
}

.drop-card:hover {
    border-color: var(--blue-dark);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.drop-card h3 {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.drop-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0.75rem 0;
}

.drop-card .service-icon {
    font-size: 2.25rem;
    background: #eff6ff;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-dark);
}

.drop-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    align-items: center;
    justify-content: center;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.125rem;
    border-radius: 7px;
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--border);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    flex: 1;
}

.btn-location:hover {
    border-color: var(--blue-dark);
    color: var(--blue-dark);
}

.btn-wa {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
    flex-shrink: 0;
    color: var(--white);
    font-size: 0.875rem;
}

.btn-wa svg { width: 18px; height: 18px; }
.btn-wa:hover { background: var(--green-dark); transform: scale(1.08); }

.btn-wa-green {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
    flex-shrink: 0;
    color: var(--white);
    font-size: 0.875rem;
}

.btn-wa-green:hover { background: var(--green-dark); }

#toggleDrop {
    background-color: var(--green);
    color: white;
    border: none;
}

#toggleDrop:hover {
    background-color: #1b5e20;
}

/* ============================================
   DROP POINT TOGGLE
   ============================================ */
.drop-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    width: 100%;
}

.drop-toggle button {
    padding: 0.875rem 2rem;
    background: var(--blue-dark);
    color: var(--blue-primary);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    display: inline-block;
}

.drop-toggle button:hover { background: var(--blue-darker); }

.drop-toggle .toggle-text {
    background: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--blue-dark);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}

.drop-toggle .toggle-text:hover { text-decoration: underline; }

/* ============================================
   FEATURES (Why Choose Us) SECTION
   ============================================ */
.features {
    background: var(--bg-light);
    padding: 5rem 6%;
}

.features-container {
    max-width: 1400px;
    margin: auto;
}

.features-content {
    display: flex;
    gap: 3rem;
    align-items: start;
}

.features-left { flex: 1.2; }

.features-left h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue-dark);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.feature-text h3 {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

.feature-text p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.875rem;
}

/* ============================================
   CONTACT CARD
   ============================================ */
.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    max-width: 360px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.btn-contact.btn-whatsapp {
    background: var(--green);
    color: var(--white);
}

.btn-contact.btn-whatsapp:hover { background: var(--green-dark); }

.btn-email {
    background: rgb(220, 55, 0);
    color: var(--white);
}

.btn-email:hover { background: rgb(190, 45, 0); }

.btn-contact svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--white);
    padding: 4.5rem 6%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--green);
    padding: 5rem 6%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-section::after {
    display: none;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.cta-container p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-container .btn-primary {
    background: var(--white) !important;
    color: var(--green) !important;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
}

.cta-container .btn-primary:hover {
    background: #dbeafe !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #060d1f;
    color: var(--white);
    padding: 3.5rem 6% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-section a:hover { color: var(--white); }

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* ============================================
   FORM PAGES
   ============================================ */
.main-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 6%;
}

.right-section {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

label span { color: var(--blue-dark); }

select,
input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.2s;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

select:focus,
input:focus {
    outline: none;
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

select:hover,
input:hover { border-color: #94a3b8; }

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.volume-toggle {
    margin: 2rem 0;
    padding: 1.75rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.volume-question {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.toggle-buttons {
    display: flex;
    gap: 1rem;
}

.toggle-btn {
    flex: 1;
    padding: 0.875rem;
    border: 1.5px solid var(--border);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.toggle-btn:hover {
    background: var(--bg-light);
    border-color: #94a3b8;
}

.toggle-btn.active {
    border-color: var(--blue-dark);
    background: #eff6ff;
    color: var(--blue-dark);
}

.dimension-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}

.dimension-group label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    background: var(--blue-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.cta-button:hover {
    background: var(--blue-darker);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button::after {
    content: '→';
    font-size: 1.25rem;
}

.toggle-text {
    color: var(--blue-dark);
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.toggle-text:hover { text-decoration: underline; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 899px) {
    .navbar {
        height: auto;
        padding: 0.875rem 5%;
    }

    .nav-container { flex-wrap: wrap; }

    .nav-menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        margin-left: 0;
        margin-top: 0.875rem;
        padding-top: 0.875rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-buttons { margin-left: auto; }

    .hero {
        padding: 2.5rem 5% 3rem;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 { font-size: 2rem; }

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-illustration {
        max-width: 100%;
        justify-content: center;
    }

    .hero-illustration img {
        max-width: 360px;
        margin: 0 auto;
    }

    .tracking-wrap { margin-top: -24px; }
    .tracking-card { max-width: 100%; }
    .track-inputs { grid-template-columns: 1fr; }
    .tracking-hero h1 { font-size: 1.75rem; }
    .tracking-form-row { grid-template-columns: 1fr; }

    .btn-track {
        width: 100%;
        justify-content: center;
    }

    .services { padding: 3rem 5%; }
    .section-header h2 { font-size: 1.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .drop-point { padding: 3rem 5%; }
    .drop-grid { grid-template-columns: 1fr; }
    .features { padding: 3rem 5%; }
    .features-content { flex-direction: column; gap: 2rem; }
    .features-list { grid-template-columns: 1fr; }
    .contact-card { max-width: 100%; }
    .stats { padding: 3rem 5%; }

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

    .stat-item h3 { font-size: 2.25rem; }
    .cta-section { padding: 3rem 5%; }
    .cta-container h2 { font-size: 1.75rem; }
    footer { padding: 2.5rem 5% 1.5rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .main-container { padding: 0 5%; margin: 2rem auto; }
    .right-section { padding: 2rem 1.5rem; }
    .form-title { font-size: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .toggle-buttons { flex-direction: column; }
    .dimension-inputs { grid-template-columns: 1fr; }
}

/* ============================================
   TABLET
   ============================================ */
@media (min-width: 600px) and (max-width: 899px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .drop-grid { grid-template-columns: repeat(2, 1fr); }
    .features-list { grid-template-columns: 1fr 1fr; }
    .toggle-buttons { flex-direction: row; }
    .dimension-inputs { grid-template-columns: repeat(3, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .tracking-form-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   DESKTOP
   ============================================ */
@media (min-width: 900px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   TOUCH DEVICES
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .btn-login,
    .btn-register,
    .btn-contact,
    .btn-location,
    .toggle-btn,
    .cta-button,
    .btn-track,
    .btn-track-pkg {
        min-height: 44px;
    }

    .btn-wa,
    .btn-wa-green {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--blue-dark);
    outline-offset: 2px;
}

/* ============================================
   IMAGE CARD SECTION
   ============================================ */
.image-card-section {
    background: var(--bg-light);
    padding: 5rem 6%;
}

.image-card-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.image-card {
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.image-card:hover {
    border-color: var(--blue-dark);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-5px);
}

.image-card img {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
    display: block;
}

@media (max-width: 899px) {
    .image-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 599px) {
    .image-card-grid { grid-template-columns: 1fr; }
}