/* ===== PAGE BANNER (reuse from gallery) ===== */
.page-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s infinite ease-in-out alternate;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s infinite ease-in-out alternate-reverse;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 550px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-custom li a:hover {
  color: var(--accent-light);
}

.breadcrumb-custom li.active {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-right: 0;
}


/* ===== BANNER OVERRIDE ===== */
.ambulance-banner {
    background: linear-gradient(160deg, #450a0a 0%, #991b1b 40%, #dc2626 100%) !important;
}

.ambulance-banner::before {
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%) !important;
}

.ambulance-banner::after {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%) !important;
}

.emergency-badge {
    border-color: rgba(239, 68, 68, 0.4) !important;
    background: rgba(239, 68, 68, 0.15) !important;
}

.emergency-dot {
    background: #ef4444 !important;
    animation: emergencyPulse 1s infinite !important;
}

@keyframes emergencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}

.banner-ambulance-art {
    position: absolute;
    bottom: 30px;
    right: 8%;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    animation: ambulanceDrive 3s ease-in-out infinite alternate;
}

@keyframes ambulanceDrive {
    0% { transform: translateX(0) rotate(0deg); }
    100% { transform: translateX(15px) rotate(-1deg); }
}

/* ===== EMERGENCY CALL STRIP ===== */
.emergency-strip {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.emergency-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    animation: stripScroll 20s linear infinite;
}

@keyframes stripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.emergency-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.strip-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.strip-pulse {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    animation: emergencyPulse 1s infinite;
    flex-shrink: 0;
}

.strip-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.strip-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.strip-right {
    display: flex;
    gap: 10px;
}

.btn-call-emergency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #fff;
    color: #dc2626;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-call-emergency:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    color: #dc2626;
}

.btn-call-emergency i {
    animation: ringPulse 1.5s infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-15deg); }
    60% { transform: rotate(10deg); }
    80% { transform: rotate(0); }
}

.btn-whatsapp-emergency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-emergency:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== STATS ===== */
.amb-stats {
    margin-top: -20px;
    position: relative;
    z-index: 9;
    padding-bottom: 20px;
}

.amb-stat-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
}

.amb-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.amb-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.amb-stat-card:hover .amb-stat-icon {
    transform: scale(1.1);
}

.amb-stat-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.amb-stat-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.amb-stat-icon.amber {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.amb-stat-number {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--navy-dark);
    line-height: 1;
}

.amb-stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

/* ===== MAIN SECTION ===== */
.amb-section {
    padding: 80px 0 60px;
}

/* ===== AMBULANCE CARDS ===== */
.amb-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.amb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ef4444, #dc2626);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amb-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(239, 68, 68, 0.15);
}

.amb-card:hover::before {
    opacity: 1;
}

/* Card Badge */
.amb-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
}

.amb-card-badge.als {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.amb-card-badge.bls {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.amb-card-badge.neo {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: #fff;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

/* Card Header */
.amb-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 28px 0;
}

.amb-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.amb-card:hover .amb-card-icon {
    transform: scale(1.1);
}

.als-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.12));
    color: #ef4444;
}

.bls-icon {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
    color: var(--primary);
}

.neo-icon {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(225, 29, 72, 0.12));
    color: #f43f5e;
}

.amb-card-header h4 {
    font-weight: 700;
    font-size: 18px;
    color: var(--navy-dark);
    margin: 0;
    line-height: 1.3;
}

.amb-card-header h4::after {
    display: none;
}

.amb-card-header small {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

/* Card Body */
.amb-card-body {
    padding: 20px 28px;
}

.amb-card-body p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Equipment Tags */
.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.equip-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(13, 148, 136, 0.06);
    color: var(--primary);
    border: 1px solid rgba(13, 148, 136, 0.1);
    transition: all 0.3s ease;
}

.equip-tag:hover {
    background: rgba(13, 148, 136, 0.12);
    transform: translateY(-1px);
}

.equip-tag i {
    font-size: 10px;
}

/* Card Footer */
.amb-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.01);
    gap: 12px;
    flex-wrap: wrap;
}

.amb-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.amb-meta span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.amb-meta span i {
    color: var(--primary);
    font-size: 11px;
}

.amb-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.amb-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    color: #fff;
}

.amb-call-btn.bls-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.amb-call-btn.bls-btn:hover {
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.amb-call-btn.neo-btn {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.2);
}

.amb-call-btn.neo-btn:hover {
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.3);
}

.amb-call-btn i {
    font-size: 11px;
}

/* ===== INFO BOXES (Right Column) ===== */
.info-box {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg,
            rgba(13, 148, 136, 0.04),
            rgba(6, 182, 212, 0.02));
}

.info-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(6, 182, 212, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-box-icon.emergency-glow {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.12));
    color: #ef4444;
    animation: emergencyPulse 2s infinite;
}

.info-box-icon.map-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(99, 102, 241, 0.12));
    color: #3b82f6;
}

.info-box-icon.amber-bg {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(251, 191, 36, 0.12));
    color: #f59e0b;
}

.info-box-header h4 {
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-dark);
    margin: 0;
}

.info-box-header h4::after {
    display: none;
}

.info-box-body {
    padding: 20px 24px;
}

/* ===== STEP LIST ===== */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(239, 68, 68, 0.04);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h6 {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy-dark);
    margin: 0 0 3px;
}

.step-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ===== COVERAGE LIST ===== */
.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.coverage-item:hover {
    background: rgba(59, 130, 246, 0.04);
}

.coverage-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.coverage-dot.primary { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.coverage-dot.blue { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.coverage-dot.amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.coverage-dot.green { background: linear-gradient(135deg, #10b981, #059669); }

.coverage-item h6 {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-dark);
    margin: 0 0 2px;
}

.coverage-item span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.coverage-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.08);
    margin-top: 12px;
}

.coverage-note i {
    color: #3b82f6;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.coverage-note span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* ===== CHARGE TABLE ===== */
.charge-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.charge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    gap: 12px;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.charge-row:last-child {
    border-bottom: none;
}

.charge-row:hover {
    background: rgba(245, 158, 11, 0.04);
}

.charge-row.highlight-row {
    background: linear-gradient(135deg,
            rgba(13, 148, 136, 0.06),
            rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    margin-top: 8px;
}

.charge-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.charge-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.charge-badge.primary-badge {
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
}

.charge-badge.als-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.charge-badge.neo-badge {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.charge-badge.member-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.charge-amount {
    font-weight: 800;
    font-size: 15px;
    color: var(--navy-dark);
    white-space: nowrap;
}

.charge-amount.discount {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
}

/* ===== QUICK CALL CARD ===== */
.quick-call-card {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.quick-call-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.quick-call-inner {
    padding: 32px 28px;
    text-align: center;
    position: relative;
}

.quick-call-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 16px;
    animation: emergencyPulse 1.5s infinite;
}

.quick-call-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.quick-call-card h4::after {
    display: none;
}

.quick-call-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.quick-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: #dc2626;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.quick-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #dc2626;
}

.quick-call-btn i {
    animation: ringPulse 1.5s infinite;
}

/* ===== FEATURES SECTION (DARK) ===== */
.amb-features-section {
    padding: 80px 0;
}

.amb-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.amb-feature:hover {
    transform: translateX(6px);
}

.amb-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.amb-feature:hover .amb-feature-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    transform: scale(1.1);
}

.amb-feature h6 {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}

.amb-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

/* ===== TIPS CARD (DARK) ===== */
.tips-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.tips-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}

.tips-card-header {
    background: rgba(255, 255, 255, 0.06);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tips-card-header i {
    font-size: 22px;
    color: #fbbf24;
}

.tips-card-header h5 {
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin: 0;
}

.tips-card-header h5::after {
    display: none;
}

.tips-card-body {
    padding: 12px 16px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.tip-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.tip-number {
    min-width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-content h6 {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin: 0 0 3px;
}

.tip-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* ===== EMERGENCY NUMBERS ===== */
.amb-numbers-section {
    padding: 80px 0;
}

.num-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.num-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.num-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin: 0 auto 12px;
}

.num-icon.hospital-bg {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.num-icon.police-bg {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.num-icon.fire-bg {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.num-icon.suwa-bg {
    background: linear-gradient(135deg, #10b981, #059669);
}

.num-icon.govt-bg {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.num-card h6 {
    font-weight: 600;
    font-size: 13px;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.num-card a {
    font-weight: 800;
    font-size: 15px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.num-card a:hover {
    color: var(--accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .banner-ambulance-art {
        font-size: 80px;
        bottom: 20px;
        right: 5%;
    }

    .emergency-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .strip-left {
        flex-direction: column;
        gap: 8px;
    }

    .strip-right {
        width: 100%;
        justify-content: center;
    }

    .amb-stats {
        margin-top: -15px;
    }

    .amb-card-header {
        padding: 24px 22px 0;
    }

    .amb-card-body {
        padding: 18px 22px;
    }

    .amb-card-footer {
        padding: 14px 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .amb-call-btn {
        width: 100%;
        justify-content: center;
    }

    .amb-section {
        padding: 60px 0 50px;
    }
}

@media (max-width: 767px) {
    .banner-ambulance-art {
        font-size: 60px;
        bottom: 15px;
        right: 3%;
        opacity: 0.5;
    }

    .strip-number {
        font-size: 20px;
    }

    .btn-call-emergency,
    .btn-whatsapp-emergency {
        padding: 8px 20px;
        font-size: 13px;
    }

    .amb-stat-card {
        padding: 18px 14px;
        gap: 12px;
    }

    .amb-stat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }

    .amb-stat-number {
        font-size: 1.4rem;
    }

    .amb-stat-label {
        font-size: 11px;
    }

    .amb-card-header {
        padding: 22px 18px 0;
        gap: 12px;
    }

    .amb-card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .amb-card-header h4 {
        font-size: 16px;
    }

    .amb-card-body {
        padding: 16px 18px;
    }

    .amb-card-body p {
        font-size: 13px;
    }

    .equipment-tags {
        gap: 6px;
    }

    .equip-tag {
        padding: 4px 10px;
        font-size: 11px;
    }

    .amb-card-footer {
        padding: 14px 18px;
    }

    .info-box-header {
        padding: 18px 20px;
    }

    .info-box-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 12px;
    }

    .info-box-header h4 {
        font-size: 15px;
    }

    .info-box-body {
        padding: 16px 18px;
    }

    .step-item {
        padding: 10px 8px;
        gap: 12px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-radius: 8px;
    }

    .step-content h6 {
        font-size: 13px;
    }

    .step-content p {
        font-size: 12px;
    }

    .coverage-item {
        padding: 10px 8px;
        gap: 10px;
    }

    .coverage-item h6 {
        font-size: 13px;
    }

    .charge-row {
        padding: 12px 8px;
        flex-wrap: wrap;
    }

    .charge-label {
        font-size: 12px;
    }

    .charge-amount {
        font-size: 14px;
    }

    .quick-call-inner {
        padding: 28px 22px;
    }

    .quick-call-btn {
        font-size: 16px;
        padding: 12px 28px;
    }

    .amb-feature {
        gap: 12px;
        margin-bottom: 18px;
    }

    .amb-feature-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-radius: 12px;
    }

    .amb-feature h6 {
        font-size: 14px;
    }

    .amb-feature p {
        font-size: 12px;
    }

    .tip-item {
        padding: 10px 8px;
        gap: 10px;
    }

    .tip-number {
        min-width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .tip-content h6 {
        font-size: 13px;
    }

    .num-card {
        padding: 18px 12px;
    }

    .num-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 12px;
    }

    .num-card h6 {
        font-size: 11px;
    }

    .num-card a {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .banner-ambulance-art {
        display: none;
    }

    .strip-pulse {
        display: none;
    }

    .strip-number {
        font-size: 18px;
    }

    .strip-label {
        font-size: 10px;
    }

    .btn-call-emergency,
    .btn-whatsapp-emergency {
        flex: 1;
        justify-content: center;
        padding: 8px 14px;
        font-size: 12px;
    }

    .amb-stat-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .amb-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .amb-stat-number {
        font-size: 1.2rem;
    }

    .amb-stat-label {
        font-size: 10px;
    }

    .amb-card {
        border-radius: 18px;
    }

    .amb-card-badge {
        top: 12px;
        right: 12px;
        padding: 3px 10px;
        font-size: 10px;
    }

    .amb-card-header {
        padding: 18px 16px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .amb-card-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }

    .amb-card-header h4 {
        font-size: 15px;
    }

    .amb-card-body {
        padding: 14px 16px;
    }

    .equip-tag {
        padding: 3px 8px;
        font-size: 10px;
        gap: 4px;
    }

    .amb-card-footer {
        padding: 12px 16px;
    }

    .amb-meta span {
        font-size: 11px;
    }

    .info-box {
        border-radius: 18px;
    }

    .info-box-header {
        padding: 16px;
        gap: 10px;
    }

    .info-box-body {
        padding: 14px 16px;
    }

    .charge-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 10px;
    }

    .charge-amount {
        align-self: flex-end;
    }

    .quick-call-card {
        border-radius: 18px;
    }

    .quick-call-inner {
        padding: 24px 18px;
    }

    .quick-call-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .quick-call-card h4 {
        font-size: 16px;
    }

    .quick-call-btn {
        font-size: 15px;
        padding: 12px 24px;
        width: 100%;
        justify-content: center;
    }

    .tips-card {
        border-radius: 18px;
    }

    .num-card {
        padding: 16px 10px;
        border-radius: 14px;
    }

    .num-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .num-card h6 {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .num-card a {
        font-size: 12px;
    }
}

     .about-section {
        background: linear-gradient(160deg, var(--navy-dark), var(--navy), var(--primary-dark));
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 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%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");
    }

    .about-glass {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        padding: 40px;
    }

    .about-feature {
        display: flex;
        gap: 16px;
        margin-bottom: 28px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(13, 148, 136, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--accent-light);
        flex-shrink: 0;
    }

    .about-feature h6 {
        font-weight: 600;
        margin-bottom: 4px;
    }

    .about-feature p {
        font-size: 14px;
        opacity: 0.7;
        margin: 0;
    }
    