.contact-section { background: var(--bg); }

.contact-card { background: #fff; border-radius: 28px; padding: 56px 40px; text-align: center; box-shadow: 0 8px 36px rgba(0,80,140,0.1); max-width: 560px; margin: 0 auto 48px; }
.contact-icon-circle { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #e0f7fa, #b2ebf2); display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 24px; }
.contact-card h2 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 28px; color: var(--navy); margin-bottom: 10px; }
.contact-card p  { font-size: 15px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.email-block     { background: #f0f9ff; border: 1.5px solid rgba(0,150,200,0.2); border-radius: 14px; padding: 16px 24px; margin-bottom: 24px; }
.email-address   { font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 800; color: var(--teal); }
.btn-send-email  { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--teal), var(--blue)); color: #fff; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800; padding: 14px 28px; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 20px rgba(0,150,200,0.35); transition: transform 0.2s, box-shadow 0.2s; }
.btn-send-email:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,150,200,0.45); }

.info-tiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 48px; }
.info-tile  { background: #fff; border-radius: 20px; padding: 28px; box-shadow: 0 4px 16px rgba(0,80,140,0.07); border: 1.5px solid rgba(0,120,180,0.1); text-decoration: none; transition: transform 0.22s, box-shadow 0.22s; }
.info-tile:hover { transform: translateY(-5px); box-shadow: 0 12px 34px rgba(0,80,140,0.13); }
.it-icon  { font-size: 32px; display: block; margin-bottom: 12px; }
.it-title { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.it-desc  { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.6; }
