 :root {
     --amity-navy: #0a1f5c;
     --amity-blue: #1a3a8f;
     --amity-gold: #e6a817;
     --amity-gold-light: #f5c84a;
     --amity-sky: #e8f0fe;
     --amity-dark: #0d1b3e;
     --amity-text: #2c3e50;
     --amity-muted: #6c7a8f;
     --amity-light: #f7f9fc;
     --amity-white: #ffffff;
     --shadow-sm: 0 2px 12px rgba(10, 31, 92, 0.08);
     --shadow-md: 0 8px 32px rgba(10, 31, 92, 0.12);
     --shadow-lg: 0 16px 56px rgba(10, 31, 92, 0.16);
     --radius: 14px;
     --radius-lg: 22px;
 }

 * {
     box-sizing: border-box;
 }

 body {
     font-family: Inter;
     color: var(--amity-text);
     background: #fff;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3 {
     font-family: 'Playfair Display', serif;
 }

 /* ========== TOPBAR ========== */
 .topbar {
     background: var(--amity-navy);
     color: rgba(255, 255, 255, .85);
     font-size: .8rem;
     padding: 7px 0;
     letter-spacing: .02em;
 }

 .topbar a {
     color: var(--amity-gold);
     text-decoration: none;
 }

 .topbar .partner-badge {
     background: var(--amity-gold);
     color: var(--amity-navy);
     font-weight: 700;
     padding: 2px 10px;
     border-radius: 20px;
     font-size: .72rem;
     letter-spacing: .04em;
 }

 /* ========== NAVBAR ========== */
 .navbar-custom {
     background: #fff;
     box-shadow: 0 2px 16px rgba(10, 31, 92, .1);
     padding: 0;
     position: sticky;
     top: 0;
     z-index: 1050;
 }

 .navbar-brand-wrap {
     padding: 10px 0;
 }

 .brand-logo {
     height: 44px;
 }

 .brand-text {
     line-height: 1.2;
 }

 .brand-text .main {
     font-size: 1.15rem;
     font-weight: 700;
     color: var(--amity-navy);
     font-family: 'Playfair Display', serif;
 }

 .brand-text .sub {
     font-size: .68rem;
     color: var(--amity-gold);
     font-weight: 600;
     letter-spacing: .08em;
     text-transform: uppercase;
 }

 .nav-link-custom {
     color: var(--amity-navy) !important;
     font-weight: 500;
     font-size: .88rem;
     padding: 1rem .8rem !important;
     position: relative;
     text-decoration: none !important;
 }

 .nav-link-custom::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: .8rem;
     right: .8rem;
     height: 2px;
     background: var(--amity-gold);
     transform: scaleX(0);
     transition: transform .25s;
 }

 .nav-link-custom:hover::after {
     transform: scaleX(1);
 }

 .btn-nav-cta {
     background: var(--amity-gold);
     color: var(--amity-navy) !important;
     font-weight: 700;
     border-radius: 6px;
     padding: .45rem 1.1rem !important;
     font-size: .85rem;
     margin-left: .5rem;
     transition: background .2s, transform .15s;
 }

 .btn-nav-cta:hover {
     background: var(--amity-gold-light);
     transform: translateY(-1px);
 }

 /* ========== HERO ========== */
 .hero-section {
     background: linear-gradient(135deg, var(--amity-navy) 0%, var(--amity-blue) 60%, #1e4db7 100%);
     position: relative;
     overflow: hidden;
     padding: 70px 0 60px;
 }

 .hero-section::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.03'%3E%3Ccircle cx='30' cy='30' r='28'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
 }

 .hero-section::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     right: 0;
     height: 80px;
     background: #fff;
     clip-path: ellipse(55% 100% at 50% 100%);
 }

 .hero-tag {
     display: inline-block;
     background: rgba(230, 168, 23, .18);
     border: 1px solid rgba(230, 168, 23, .45);
     color: var(--amity-gold-light);
     padding: 5px 14px;
     border-radius: 20px;
     font-size: .78rem;
     font-weight: 600;
     letter-spacing: .06em;
     text-transform: uppercase;
     margin-bottom: 18px;
 }

 .hero-title {
     font-size: clamp(2rem, 5vw, 3rem);
     color: #fff;
     line-height: 1.2;
     margin-bottom: 14px;
 }

 .hero-title span {
     color: var(--amity-gold);
 }

 .hero-subtitle {
     color: rgba(255, 255, 255, .8);
     font-size: 1rem;
     margin-bottom: 28px;
     line-height: 1.6;
 }

 .hero-trust-badges {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-bottom: 0;
 }

 .trust-badge {
     display: flex;
     align-items: center;
     gap: 7px;
     background: rgba(255, 255, 255, .1);
     border: 1px solid rgba(255, 255, 255, .2);
     border-radius: 8px;
     padding: 8px 14px;
     font-size: .78rem;
     color: #fff;
     font-weight: 500;
 }

 .trust-badge i {
     color: var(--amity-gold);
     font-size: 1rem;
 }

 /* HERO FORM */
 .hero-form-card {
     background: #fff;
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-lg);
     padding: 32px 28px 24px;
     position: relative;
     z-index: 5;
 }

 .hero-form-card .form-title {
     font-size: 1.2rem;
     color: var(--amity-navy);
     font-weight: 700;
     margin-bottom: 4px;
     font-family: 'Playfair Display', serif;
 }

 .hero-form-card .form-subtitle {
     font-size: .82rem;
     color: var(--amity-muted);
     margin-bottom: 20px;
 }

 .form-label-custom {
     font-size: .8rem;
     font-weight: 600;
     color: var(--amity-navy);
     margin-bottom: 5px;
 }

 .form-control-custom {
     border: 1.5px solid #dce4f0;
     border-radius: 8px;
     font-size: .88rem;
     padding: .55rem .85rem;
     color: var(--amity-text);
     transition: border-color .2s, box-shadow .2s;
 }

 .form-control-custom:focus {
     border-color: var(--amity-blue);
     box-shadow: 0 0 0 3px rgba(26, 58, 143, .12);
     outline: none;
 }

 .btn-hero-primary {
     background: linear-gradient(135deg, var(--amity-blue), var(--amity-navy));
     color: #fff;
     font-weight: 700;
     border: none;
     border-radius: 8px;
     padding: .75rem 1.5rem;
     font-size: .95rem;
     width: 100%;
     transition: transform .2s, box-shadow .2s;
     letter-spacing: .02em;
 }

 .btn-hero-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(10, 31, 92, .3);
 }

 .btn-hero-secondary {
     background: transparent;
     color: var(--amity-navy);
     font-weight: 600;
     border: 2px solid var(--amity-navy);
     border-radius: 8px;
     padding: .65rem 1.5rem;
     font-size: .88rem;
     width: 100%;
     transition: all .2s;
 }

 .btn-hero-secondary:hover {
     background: var(--amity-navy);
     color: #fff;
 }

 .form-disclaimer {
     font-size: .72rem;
     color: var(--amity-muted);
     line-height: 1.5;
     margin-top: 12px;
     padding-top: 12px;
     border-top: 1px solid #eef1f7;
 }

 /* ========== SECTION BASE ========== */
 section {
     padding: 72px 0;
 }

 .section-tag {
     display: inline-block;
     background: rgba(230, 168, 23, .12);
     color: var(--amity-gold);
     border: 1px solid rgba(230, 168, 23, .3);
     padding: 4px 14px;
     border-radius: 20px;
     font-size: .72rem;
     font-weight: 700;
     letter-spacing: .1em;
     text-transform: uppercase;
     margin-bottom: 12px;
 }

 .section-title {
     font-size: clamp(1.7rem, 3.5vw, 2.4rem);
     color: var(--amity-navy);
     line-height: 1.25;
     margin-bottom: 14px;
 }

 .section-desc {
     color: var(--amity-muted);
     font-size: .95rem;
     max-width: 600px;
 }

 .divider-gold {
     width: 52px;
     height: 3px;
     background: var(--amity-gold);
     border-radius: 2px;
     margin: 16px 0 28px;
 }

 /* ========== STATS STRIP ========== */
 .stats-strip {
     background: linear-gradient(90deg, var(--amity-navy), var(--amity-blue));
     padding: 28px 0;
 }

 .stat-item {
     text-align: center;
     padding: 10px;
 }

 .stat-number {
     font-size: 2rem;
     font-weight: 700;
     color: var(--amity-gold);
     font-family: 'Playfair Display', serif;
 }

 .stat-label {
     font-size: .8rem;
     color: rgba(255, 255, 255, .8);
     margin-top: 2px;
 }

 .stat-divider {
     width: 1px;
     background: rgba(255, 255, 255, .15);
     align-self: stretch;
 }

 /* ========== HIGHLIGHTS ========== */
 .highlights-section {
     background: var(--amity-light);
 }

 .highlight-card {
     background: #fff;
     border-radius: var(--radius);
     padding: 28px 24px;
     box-shadow: var(--shadow-sm);
     border: 1px solid #eef1f8;
     transition: transform .25s, box-shadow .25s;
     height: 100%;
 }

 .highlight-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-md);
 }

 .highlight-icon {
     width: 52px;
     height: 52px;
     border-radius: 12px;
     background: linear-gradient(135deg, var(--amity-sky), #d0dcf8);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.4rem;
     color: var(--amity-blue);
     margin-bottom: 16px;
 }

 .highlight-card h5 {
     font-size: .98rem;
     font-weight: 700;
     color: var(--amity-navy);
     margin-bottom: 6px;
     font-family: 'DM Sans', sans-serif;
 }

 .highlight-card p {
     font-size: .82rem;
     color: var(--amity-muted);
     margin: 0;
     line-height: 1.6;
 }

 /* ========== PROGRAMS ========== */
 .program-card {
     background: #fff;
     border-radius: var(--radius);
     border: 1.5px solid #e4eaf5;
     overflow: hidden;
     transition: transform .25s, box-shadow .25s, border-color .25s;
     height: 100%;
 }

 .program-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-md);
     border-color: var(--amity-blue);
 }

 /* .program-header {
      background: linear-gradient(135deg, var(--amity-navy), var(--amity-blue));
      padding: 18px 20px;
    } */

 .program-header {
     position: relative;
     padding: 22px 20px;
     min-height: 250px;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     background-size: cover;
     background-position: center;
     overflow: hidden;
 }

 /* Dark Overlay */
 /* .program-header::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(to top,
             rgba(250, 250, 250, 0.75),
             rgba(248, 247, 247, 0.2));
     z-index: 1;
 } */

 /* Content Above Overlay */
 .program-header * {
     position: relative;
     z-index: 2;
 }

 .program-badge {
     background: rgba(230, 168, 23, .2);
     color: var(--amity-gold);
     border: 1px solid rgba(230, 168, 23, .4);
     padding: 3px 10px;
     border-radius: 20px;
     font-size: .68rem;
     font-weight: 700;
     letter-spacing: .06em;
     text-transform: uppercase;
     margin-bottom: 8px;
     display: inline-block;
 }

 .program-header h4 {
     color: #fff;
     font-size: 1.15rem;
     margin: 0;
 }

 .program-body {
     padding: 20px;
 }

 .program-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-bottom: 14px;
 }

 .meta-chip {
     background: var(--amity-sky);
     color: var(--amity-blue);
     padding: 4px 10px;
     border-radius: 6px;
     font-size: .73rem;
     font-weight: 600;
 }

 .program-fee {
     font-size: .88rem;
     color: var(--amity-muted);
     margin-bottom: 14px;
 }

 .program-fee strong {
     color: var(--amity-navy);
     font-size: 1rem;
 }

 .btn-program {
     background: var(--amity-gold);
     color: var(--amity-navy);
     font-weight: 700;
     border: none;
     border-radius: 7px;
     padding: .55rem 1.1rem;
     font-size: .82rem;
     width: 100%;
     transition: background .2s;
 }

 .btn-program:hover {
     background: var(--amity-gold-light);
 }

 /* ========== WHY AMITY ========== */
 .why-section {
     background: var(--amity-navy);
     position: relative;
     overflow: hidden;
 }

 .why-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at 70% 50%, rgba(26, 58, 143, .6) 0%, transparent 70%);
 }

 .why-card {
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .12);
     border-radius: var(--radius);
     padding: 24px 20px;
     backdrop-filter: blur(4px);
     height: 100%;
     transition: background .2s;
 }

 .why-card:hover {
     background: rgba(255, 255, 255, .1);
 }

 .why-card i {
     font-size: 1.8rem;
     color: var(--amity-gold);
     margin-bottom: 12px;
 }

 .why-card h5 {
     color: #fff;
     font-size: .95rem;
     font-weight: 600;
     margin-bottom: 6px;
     font-family: 'DM Sans', sans-serif;
 }

 .why-card p {
     color: rgba(255, 255, 255, .65);
     font-size: .8rem;
     line-height: 1.6;
     margin: 0;
 }

 /* ========== ACCREDITATION ========== */
 .accred-section {
     background: var(--amity-light);
 }

 .accred-badge-wrap {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     background: #fff;
     border-radius: var(--radius);
     border: 1.5px solid #e4eaf5;
     padding: 28px 20px;
     text-align: center;
     transition: box-shadow .2s;
 }

 .accred-badge-wrap:hover {
     box-shadow: var(--shadow-sm);
 }

 .accred-icon {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--amity-sky), #dce8ff);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.6rem;
     color: var(--amity-blue);
     margin: 0 auto 12px;
 }

 .accred-title {
     font-weight: 700;
     color: var(--amity-navy);
     font-size: .88rem;
 }

 .accred-sub {
     font-size: .75rem;
     color: var(--amity-muted);
     margin-top: 3px;
 }

 /* ========== PLACEMENT ========== */
 .placement-feature {
     display: flex;
     gap: 16px;
     align-items: flex-start;
     padding: 18px 0;
     border-bottom: 1px solid #eef1f7;
 }

 .placement-feature:last-child {
     border-bottom: none;
 }

 .placement-icon {
     width: 44px;
     height: 44px;
     flex-shrink: 0;
     border-radius: 10px;
     background: var(--amity-sky);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     color: var(--amity-blue);
 }

 .placement-feature h6 {
     font-weight: 700;
     color: var(--amity-navy);
     margin-bottom: 3px;
     font-size: .9rem;
 }

 .placement-feature p {
     font-size: .8rem;
     color: var(--amity-muted);
     margin: 0;
     line-height: 1.5;
 }

 .partner-logo-strip {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 24px;
 }

 .partner-chip {
     background: #fff;
     border: 1.5px solid #dce4f0;
     border-radius: 8px;
     padding: 8px 16px;
     font-size: .78rem;
     font-weight: 600;
     color: var(--amity-navy);
 }

 /* ========== TESTIMONIALS ========== */
 .testimonials-section {
     background: var(--amity-light);
 }

 .testimonial-card {
     background: #fff;
     border-radius: var(--radius);
     padding: 28px 24px;
     box-shadow: var(--shadow-sm);
     border: 1px solid #eef1f8;
     height: 100%;
 }

 .stars {
     color: var(--amity-gold);
     font-size: .9rem;
     margin-bottom: 12px;
 }

 .testimonial-text {
     font-size: .88rem;
     color: var(--amity-text);
     line-height: 1.7;
     margin-bottom: 20px;
     font-style: italic;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .author-avatar {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--amity-blue), var(--amity-navy));
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-weight: 700;
     font-size: .9rem;
     flex-shrink: 0;
 }

 .author-name {
     font-weight: 700;
     font-size: .88rem;
     color: var(--amity-navy);
 }

 .author-prog {
     font-size: .75rem;
     color: var(--amity-muted);
 }

 /* ========== PROCESS ========== */
 .process-step {
     position: relative;
     text-align: center;
     padding: 0 10px;
 }

 .step-num {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--amity-blue), var(--amity-navy));
     color: #fff;
     font-weight: 700;
     font-size: 1.1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 14px;
     font-family: 'Playfair Display', serif;
 }

 .step-title {
     font-weight: 700;
     font-size: .88rem;
     color: var(--amity-navy);
     margin-bottom: 6px;
 }

 .step-desc {
     font-size: .78rem;
     color: var(--amity-muted);
     line-height: 1.5;
 }

 .step-arrow {
     position: absolute;
     top: 24px;
     right: -18px;
     color: var(--amity-gold);
     font-size: 1rem;
 }

 /* ========== FAQ ========== */
 .faq-section {
     background: var(--amity-light);
 }

 .accordion-item-custom {
     background: #fff;
     border: 1.5px solid #e4eaf5 !important;
     border-radius: var(--radius) !important;
     margin-bottom: 10px;
     overflow: hidden;
 }

 .accordion-button-custom {
     background: #fff !important;
     color: var(--amity-navy) !important;
     font-weight: 600;
     font-size: .9rem;
     padding: 18px 22px;
     box-shadow: none !important;
     border: none;
 }

 .accordion-button-custom:not(.collapsed) {
     color: var(--amity-blue) !important;
     background: var(--amity-sky) !important;
 }

 .accordion-button-custom::after {
     filter: none !important;
 }

 .accordion-body-custom {
     font-size: .85rem;
     color: var(--amity-muted);
     line-height: 1.7;
     padding: 0 22px 18px;
     background: var(--amity-sky);
 }

 /* ========== LEAD FORM SECTION ========== */
 .lead-section {
     background: linear-gradient(135deg, var(--amity-navy), var(--amity-blue));
     position: relative;
     overflow: hidden;
 }

 .lead-section::before {
     content: '';
     position: absolute;
     top: -100px;
     right: -100px;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: rgba(230, 168, 23, .06);
     border: 60px solid rgba(230, 168, 23, .05);
 }

 .lead-form-box {
     background: #fff;
     border-radius: var(--radius-lg);
     padding: 40px 36px;
     box-shadow: var(--shadow-lg);
 }

 /* ========== FOOTER ========== */
 footer {
     background: var(--amity-dark);
     color: rgba(255, 255, 255, .7);
     font-size: .83rem;
 }

 .footer-brand {
     color: #fff;
     font-size: 1.1rem;
     font-weight: 700;
     font-family: 'Playfair Display', serif;
 }

 .footer-tagline {
     font-size: .75rem;
     color: var(--amity-gold);
     letter-spacing: .06em;
     text-transform: uppercase;
 }

 .footer-heading {
     color: #fff;
     font-size: .88rem;
     font-weight: 700;
     letter-spacing: .04em;
     text-transform: uppercase;
     margin-bottom: 14px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 7px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, .6);
     text-decoration: none;
     font-size: .82rem;
     transition: color .2s;
 }

 .footer-links a:hover {
     color: var(--amity-gold);
 }

 .footer-contact-item {
     display: flex;
     gap: 10px;
     align-items: flex-start;
     margin-bottom: 10px;
 }

 .footer-contact-item i {
     color: var(--amity-gold);
     font-size: .95rem;
     margin-top: 1px;
     flex-shrink: 0;
 }

 .footer-divider {
     border-color: rgba(255, 255, 255, .1);
     margin: 24px 0;
 }

 .footer-disclaimer {
     background: rgba(0, 0, 0, .2);
     border-radius: 8px;
     padding: 14px 18px;
     font-size: .73rem;
     color: rgba(255, 255, 255, .5);
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .social-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 34px;
     height: 34px;
     border-radius: 8px;
     background: rgba(255, 255, 255, .08);
     color: rgba(255, 255, 255, .7);
     font-size: .9rem;
     text-decoration: none;
     transition: background .2s, color .2s;
     margin-right: 6px;
 }

 .social-btn:hover {
     background: var(--amity-gold);
     color: var(--amity-navy);
 }

 /* ========== STICKY CTA ========== */
 .sticky-cta {
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 2000;
     display: none;
 }

 .sticky-cta-inner {
     background: var(--amity-navy);
     display: flex;
     align-items: stretch;
     border-top: 2px solid var(--amity-gold);
 }

 .sticky-btn {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     padding: 14px 8px;
     color: #fff;
     font-weight: 600;
     font-size: .8rem;
     text-decoration: none;
     transition: background .2s;
     border-right: 1px solid rgba(255, 255, 255, .12);
 }

 .sticky-btn:last-child {
     border-right: none;
 }

 .sticky-btn i {
     font-size: 1.1rem;
 }

 .sticky-btn.apply {
     background: var(--amity-gold);
     color: var(--amity-navy);
 }

 .sticky-btn.whatsapp {
     background: #25d366;
 }

 .sticky-btn.call {
     background: var(--amity-blue);
 }

 .sticky-btn:hover {
     filter: brightness(1.1);
 }

 /* ========== MODAL POPUP ========== */
 .modal-overlay {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .55);
     z-index: 9999;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .modal-overlay.active {
     display: flex;
 }

 .modal-popup {
     background: #fff;
     border-radius: var(--radius-lg);
     width: 100%;
     max-width: 480px;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: var(--shadow-lg);
     position: relative;
     animation: modalSlideIn .3s ease;
     padding: 30px;
 }

 @keyframes modalSlideIn {
     from {
         opacity: 0;
         transform: translateY(30px) scale(.95);
     }

     to {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 .modal-close {
     position: absolute;
     top: 14px;
     right: 14px;
     width: 32px;
     height: 32px;
     border-radius: 50%;
     border: none;
     background: #f0f2f5;
     color: var(--amity-text);
     font-size: 1.1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background .2s, color .2s;
     z-index: 10;
 }

 .modal-close:hover {
     background: var(--amity-navy);
     color: #fff;
 }

 .modal-header {
     padding: 28px 28px 0;
     text-align: center;
 }

 .modal-header h3 {
     font-family: 'Playfair Display', serif;
     font-size: 1.3rem;
     color: var(--amity-navy);
     margin-bottom: 4px;
 }

 .modal-header p {
     font-size: .82rem;
     color: var(--amity-muted);
 }

 .modal-body {
     padding: 20px 28px 28px;
 }

 .modal-body .form-label-custom {
     font-size: .8rem;
     font-weight: 600;
     color: var(--amity-navy);
     margin-bottom: 5px;
 }

 .modal-body .form-control-custom {
     border: 1.5px solid #dce4f0;
     border-radius: 8px;
     font-size: .88rem;
     padding: .55rem .85rem;
     color: var(--amity-text);
     transition: border-color .2s, box-shadow .2s;
 }

 .modal-body .form-control-custom:focus {
     border-color: var(--amity-blue);
     box-shadow: 0 0 0 3px rgba(26, 58, 143, .12);
     outline: none;
 }

 .modal-body .mb-3 {
     margin-bottom: 14px;
 }

 .modal-footer {
     padding: 0 28px 28px;
     text-align: center;
 }

 .modal-footer .btn-modal-primary {
     background: linear-gradient(135deg, var(--amity-blue), var(--amity-navy));
     color: #fff;
     font-weight: 700;
     border: none;
     border-radius: 8px;
     padding: .7rem 2rem;
     font-size: .92rem;
     width: 100%;
     transition: transform .2s, box-shadow .2s;
     letter-spacing: .02em;
 }

 .modal-footer .btn-modal-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(10, 31, 92, .3);
 }

 .modal-footer .form-check-label {
     font-size: .73rem;
     color: var(--amity-muted);
 }

 .modal-footer .form-check {
     margin-bottom: 12px;
 }

 .modal-success {
     display: none;
     text-align: center;
     padding: 32px 20px;
 }

 .modal-success.show {
     display: block;
 }

 .modal-success .success-icon {
     width: 64px;
     height: 64px;
     border-radius: 50%;
     background: linear-gradient(135deg, #28a745, #20c997);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 16px;
     color: #fff;
     font-size: 1.8rem;
 }

 .modal-success h4 {
     color: var(--amity-navy);
     font-size: 1.1rem;
     margin-bottom: 6px;
 }

 .modal-success p {
     color: var(--amity-muted);
     font-size: .85rem;
     line-height: 1.6;
 }

 @media (max-width: 575px) {
     .modal-popup {
         max-width: 100%;
         border-radius: var(--radius) var(--radius) 0 0;
         max-height: 95vh;
     }

     .modal-overlay {
         align-items: flex-end;
         padding: 0;
     }

     .modal-body,
     .modal-header,
     .modal-footer {
         padding-left: 20px;
         padding-right: 20px;
     }
 }

 /* ========== END MODAL POPUP ========== */

 @media (max-width: 991px) {
     .sticky-cta {
         display: block;
     }

     body {
         padding-bottom: 60px;
     }

     .hero-form-card {
         margin-top: 36px;
     }

     section {
         padding: 52px 0;
     }
 }

 @media (max-width: 575px) {
     .hero-section {
         padding: 50px 0 50px;
     }

     .lead-form-box {
         padding: 28px 20px;
     }
 }