
:root{
    --navy: #3852B4;
    --navy-dark: #2f4699;
    --navy-darker: #1e2d6b;

    --blue: #5e7ac4;

    --orange: #f08d39;
    --cream: #f3be7a;

    --text-dark: #1f2937;
    --text-mid: #4b5563;
    --text-light: #94a3b8;

    --bg-light: #f7f9fc;
}

body{
    background: var(--bg-light);
}

/* ===== HERO ===== */



        .hero {
            padding-top: 68px;
            background: linear-gradient(150deg, var(--navy-darker) 0%, var(--navy) 50%, #4a63c0 100%);
            position: relative;
            overflow: hidden;
            min-height: 340px;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 80% 20%, rgba(243,190,122,0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 10% 90%, rgba(94,122,196,0.25) 0%, transparent 50%);
        }

        .hero-shapes .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
        }

        .shape-1 { width: 400px; height: 400px; background: var(--cream); top: -100px; right: -80px; animation: floatA 8s ease-in-out infinite; }
        .shape-2 { width: 220px; height: 220px; background: var(--orange); bottom: -60px; left: 10%; animation: floatB 6s ease-in-out infinite; }
        .shape-3 { width: 120px; height: 120px; background: white; top: 50px; left: 35%; animation: floatA 10s ease-in-out infinite 2s; }

        @keyframes floatA { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
        @keyframes floatB { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(16px) rotate(-5deg); } }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 40px;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(243,190,122,0.15);
            border: 1px solid rgba(243,190,122,0.3);
            color: var(--cream);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
            animation: fadeInDown 0.6s ease both;
        }

        .hero-badge::before {
            content: '';
            width: 7px; height: 7px;
            background: var(--cream);
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(1.4); } }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 5vw, 58px);
            font-weight: 800;
            color: white;
            line-height: 1.15;
            margin-bottom: 16px;
            animation: fadeInUp 0.7s ease 0.1s both;
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--cream), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 17px;
            color: rgba(255,255,255,0.75);
            max-width: 540px;
            line-height: 1.7;
            animation: fadeInUp 0.7s ease 0.2s both;
        }

        .hero-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 28px;
            animation: fadeInUp 0.7s ease 0.3s both;
        }

        .hero-breadcrumb a, .hero-breadcrumb span {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s;
        }

        .hero-breadcrumb a:hover { color: var(--cream); }
        .hero-breadcrumb .sep { color: rgba(255,255,255,0.3); }
        .hero-breadcrumb .current { color: var(--cream); font-weight: 600; }

        /* ===== QUICK CONTACT BAR ===== */
        .quick-bar {
            background: white;
            box-shadow: 0 4px 30px rgba(56,82,180,0.08);
        }

       .quick-bar-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr); /* FIX */
    gap: 30px; /* biar ada jarak */
}
        .quick-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px 0;
            border-right: 1px solid rgba(56,82,180,0.08);
            padding-right: 28px;
            padding-left: 8px;
            position: relative;
            transition: all 0.3s;
            cursor: default;
        }

        .quick-item:first-child { padding-left: 0; }
        .quick-item:last-child { border-right: none; }

        .quick-item::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            height: 3px; width: 0;
            background: linear-gradient(90deg, var(--navy), var(--orange));
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .quick-item:hover::after { width: 100%; }

        .quick-icon {
            width: 48px; height: 48px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .qi-blue { background: linear-gradient(135deg, rgba(56,82,180,0.1), rgba(94,122,196,0.15)); }
        .qi-orange { background: linear-gradient(135deg, rgba(240,141,57,0.1), rgba(243,190,122,0.15)); }
        .qi-green { background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(74,222,128,0.15)); }
        .qi-purple { background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(196,125,252,0.15)); }

        .quick-label { font-size: 12px; color: var(--text-light); font-weight: 500; margin-bottom: 3px; }
        .quick-value { font-size: 14px; font-weight: 700; color: var(--text-dark); }

        /* ===== MAIN SECTION ===== */
        .main-section {
    display: grid;
    grid-template-columns: 1fr; /* jadi 1 kolom */
}

        /* ===== FORM CARD ===== */
        .form-card {
            background: white;
            border-radius: 24px;
            padding: 48px;
            box-shadow: 0 8px 40px rgba(56,82,180,0.08);
            position: relative;
            overflow: hidden;
               max-width: 700px;
    margin: 0 auto;
        }

        .form-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--navy), var(--blue), var(--orange), var(--cream));
        }

        .form-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-card-subtitle {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 36px;
            line-height: 1.6;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 7px;
            margin-bottom: 18px;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .form-group label .req {
            color: var(--orange);
            font-size: 15px;
        }

        .form-input, .form-select, .form-textarea {
            padding: 13px 18px;
            border: 1.5px solid #e2e8f4;
            border-radius: 12px;
            font-size: 14px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            background: #fafbff;
            transition: all 0.25s;
            outline: none;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            border-color: var(--blue);
            background: white;
            box-shadow: 0 0 0 4px rgba(94,122,196,0.12);
        }

        .form-input::placeholder, .form-textarea::placeholder { color: #aab4cc; }

        .form-textarea {
            resize: vertical;
            min-height: 130px;
            line-height: 1.6;
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%238896b0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }

        .char-count {
            font-size: 12px;
            color: var(--text-light);
            text-align: right;
            margin-top: -12px;
        }

        .char-count.warn { color: var(--orange); }

        .submit-btn {
            width: 100%;
            padding: 15px 32px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: white;
            border: none;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Plus Jakarta Sans', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            margin-top: 8px;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--orange), var(--cream));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(56,82,180,0.28); }
        .submit-btn:hover::before { opacity: 1; }
        .submit-btn span { position: relative; z-index: 1; }

        .submit-btn .arrow { transition: transform 0.3s; position: relative; z-index: 1; }
        .submit-btn:hover .arrow { transform: translateX(5px); }

        /* Success message */
        .success-msg {
            display: none;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border: 1.5px solid #6ee7b7;
            border-radius: 14px;
            padding: 20px 24px;
            margin-bottom: 24px;
            align-items: center;
            gap: 14px;
        }

        .success-msg.show { display: flex; animation: fadeInUp 0.4s ease both; }
        .success-msg .icon { font-size: 28px; }
        .success-msg p { font-size: 14px; color: #065f46; font-weight: 500; line-height: 1.5; }
        .success-msg strong { display: block; font-size: 15px; margin-bottom: 3px; }

        /* ===== SIDE COLUMN ===== */
        .side-column { display: flex; flex-direction: column; gap: 24px; }

        /* Map Card */
        .map-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(56,82,180,0.08);
        }

        .map-preview {
            height: 220px;
            background: linear-gradient(135deg, #e8eef8 0%, #dce4f4 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-preview::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(56,82,180,0.05) 28px, rgba(56,82,180,0.05) 29px),
                repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(56,82,180,0.05) 28px, rgba(56,82,180,0.05) 29px);
        }

        /* Road lines */
        .road-h {
            position: absolute;
            height: 10px;
            left: 0; right: 0;
            background: white;
            opacity: 0.6;
        }
        .road-h::after {
            content: '';
            position: absolute;
            inset: 4px 0;
            background: repeating-linear-gradient(90deg, #F3BE7A, #F3BE7A 14px, transparent 14px, transparent 22px);
            opacity: 0.5;
        }
        .road-h.top { top: 70px; }
        .road-h.bottom { top: 140px; }

        .road-v {
            position: absolute;
            width: 10px;
            top: 0; bottom: 0;
            background: white;
            opacity: 0.6;
        }
        .road-v::after {
            content: '';
            position: absolute;
            inset: 0 4px;
            background: repeating-linear-gradient(180deg, #F3BE7A, #F3BE7A 14px, transparent 14px, transparent 22px);
            opacity: 0.5;
        }
        .road-v.left { left: 90px; }
        .road-v.right { left: 240px; }

        .map-pin {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            animation: pinBounce 2s ease-in-out infinite;
        }

        @keyframes pinBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

        .map-pin-head {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            box-shadow: 0 4px 14px rgba(56,82,180,0.4);
            display: flex; align-items: center; justify-content: center;
        }

        .map-pin-head::after {
            content: '🏪';
            font-size: 18px;
            transform: rotate(45deg);
        }

        .map-pin-shadow {
            width: 20px; height: 6px;
            background: rgba(0,0,0,0.15);
            border-radius: 50%;
            margin-top: 4px;
        }

        .map-pulse {
            position: absolute;
            width: 70px; height: 70px;
            border-radius: 50%;
            background: rgba(56,82,180,0.12);
            z-index: 1;
            animation: mapPulse 2.5s ease-out infinite;
        }

        @keyframes mapPulse { 0% { transform: scale(0.5); opacity: 0.7; } 100% { transform: scale(2); opacity: 0; } }

        .map-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 14px;
            background: var(--navy);
            color: white;
            border: none;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Plus Jakarta Sans', sans-serif;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
        }

        .map-btn:hover { background: var(--navy-dark); }

        .map-info {
            padding: 20px 22px 6px;
        }

        .map-info h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .map-info p {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        /* Info Card */
        .info-card {
            background: white;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 8px 40px rgba(56,82,180,0.08);
        }

        .info-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 22px;
            padding-bottom: 14px;
            border-bottom: 1.5px solid #eef1f8;
        }

        .info-item {
            display: flex;
            gap: 14px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .info-item:last-child { margin-bottom: 0; }

        .info-icon-wrap {
            width: 42px; height: 42px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 19px;
            flex-shrink: 0;
        }

        .info-icon-wrap.blue { background: linear-gradient(135deg, rgba(56,82,180,0.1), rgba(94,122,196,0.15)); }
        .info-icon-wrap.orange { background: linear-gradient(135deg, rgba(240,141,57,0.1), rgba(243,190,122,0.15)); }
        .info-icon-wrap.green { background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(74,222,128,0.15)); }
        .info-icon-wrap.purple { background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(196,125,252,0.15)); }

        .info-text-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 3px;
        }

        .info-text-value {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.5;
        }

        .info-text-note {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 2px;
        }

        /* Social Card */
        .social-card {
            background: linear-gradient(135deg, var(--navy), var(--navy-dark));
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 8px 40px rgba(56,82,180,0.2);
        }

        .social-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 19px;
            font-weight: 700;
            color: white;
            margin-bottom: 6px;
        }

        .social-card-sub {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            margin-bottom: 22px;
            line-height: 1.5;
        }

        .social-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .social-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 16px;
            border-radius: 14px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.25s;
        }

        .social-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

        .sb-wa { background: rgba(37,211,102,0.18); color: #25D366; border: 1px solid rgba(37,211,102,0.25); }
        .sb-ig { background: rgba(225,48,108,0.15); color: #E1306C; border: 1px solid rgba(225,48,108,0.2); }
        .sb-fb { background: rgba(24,119,242,0.15); color: #1877F2; border: 1px solid rgba(24,119,242,0.2); }
        .sb-tt { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.12); }

        .sb-icon { font-size: 20px; }

        /* ===== FAQ ===== */
        .faq-section {
            background: white;
            padding: 80px 0;
        }

        .faq-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(56,82,180,0.1), rgba(94,122,196,0.12));
            color: var(--navy);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 14px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--navy), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-sub {
            font-size: 15px;
            color: var(--text-light);
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 50px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .faq-item {
            border: 1.5px solid #e8edf6;
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .faq-item.open { border-color: var(--blue); box-shadow: 0 4px 20px rgba(94,122,196,0.1); }

        .faq-q {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            text-align: left;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            transition: background 0.2s;
        }

        .faq-q:hover { background: #fafbff; }
        .faq-item.open .faq-q { background: rgba(56,82,180,0.04); color: var(--navy); }

        .faq-icon {
            width: 26px; height: 26px;
            border-radius: 8px;
            background: #eef1f8;
            display: flex; align-items: center; justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            transition: all 0.3s;
            font-style: normal;
        }

        .faq-item.open .faq-icon {
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: white;
            transform: rotate(45deg);
        }

        .faq-a {
            display: none;
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.75;
        }

        .faq-item.open .faq-a { display: block; animation: fadeInUp 0.3s ease both; }

        /* ===== CTA STRIP ===== */
        .cta-strip {
            background: linear-gradient(135deg, var(--orange) 0%, var(--cream) 100%);
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-strip-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

        .cta-strip h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 800;
            color: var(--navy-darker);
            margin-bottom: 12px;
        }

        .cta-strip p {
            font-size: 15px;
            color: rgba(30,45,107,0.75);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

        .cta-btn-primary {
            background: var(--navy);
            color: white;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn-primary:hover { background: var(--navy-darker); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,45,107,0.25); }

        .cta-btn-secondary {
            background: white;
            color: var(--navy);
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* ================= RESPONSIVE ================= */

@media (max-width:992px){

    .hero-content{
        padding:50px 28px;
    }

    .quick-bar-inner{
        padding:0 24px;
        gap:20px;
    }

    .form-card{
        max-width:100%;
        padding:38px 30px;
        margin:40px 20px;
    }

    .faq-inner{
        padding:0 24px;
    }

}


@media (max-width:768px){

    .hero{
        min-height:auto;
    }

    .hero-content{
        padding:45px 22px;
    }

    .hero h1{
        font-size:34px;
        line-height:1.25;
    }

    .hero p{
        font-size:14px;
    }

    /* QUICK BAR turun */
    .quick-bar-inner{
        grid-template-columns:1fr;
        gap:0;
        padding:0 20px;
    }

    .quick-item{
        border-right:none;
        border-bottom:1px solid rgba(56,82,180,.08);
        padding:20px 0;
    }

    .quick-item:last-child{
        border-bottom:none;
    }

    /* form 2 kolom jadi 1 */
    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .form-card{
        padding:30px 22px;
        border-radius:20px;
        margin:30px 16px;
    }

    .form-card-title{
        font-size:24px;
    }

    .faq-grid{
        grid-template-columns:1fr;
    }

    .cta-strip{
        padding:50px 20px;
    }

}


@media (max-width:576px){

    .hero-content{
        padding:40px 16px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero-badge{
        font-size:11px;
        padding:6px 14px;
    }

    .hero-breadcrumb{
        flex-wrap:wrap;
    }

    .form-card{
        padding:24px 16px;
        margin:24px 12px;
    }

    .form-input,
    .form-select,
    .form-textarea{
        padding:12px 14px;
        font-size:13px;
    }

    .submit-btn{
        padding:14px;
        font-size:14px;
    }

    .faq-q{
        padding:18px;
        font-size:13px;
    }

    .cta-strip-btns{
        flex-direction:column;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        width:100%;
        justify-content:center;
    }

}