 /* ---------- GLOBAL RESET & BASE (matches original theme) ---------- */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: system-ui, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
     background-color: #16263F;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
 }

 /* Modern Header with Glassmorphism */
 header {
     background: #FFC107;
     backdrop-filter: blur(8px);
     padding: 0.7rem 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
     position: sticky;
     top: 0;
     z-index: 100;
     color: #FFFFFF;
 }

 .brand-box {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 1rem;
 }

 .brand-img {
     width: 50px;
 }

 .brand {
     font-size: 1.8rem;
     font-weight: 700;
     letter-spacing: -0.5px;
     background: linear-gradient(135deg, #FFFFFF, #E0E7FF);
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
     color: #1E2F4D;
 }

 nav ul {
     display: flex;
     gap: 1rem;
     list-style: none;
 }

 nav ul li a {
     color: #1E2F4D;
     text-decoration: none;
     font-weight: 600;
     padding: 0.5rem 0.8rem;
     border-radius: 40px;
     transition: all 0.25s ease;
     font-size: 1rem;
 }

 nav ul li a:hover {
     background: rgba(255, 255, 255, 0.2);
     color: blue;
     transform: translateY(-2px);
 }


 /* ---------- MAIN CONTAINER ---------- */
 main {
     flex: 1;
     max-width: 1300px;
     margin: 0 auto;
     padding: 2rem 1.5rem;
     width: 100%;
 }

 /* Page header with animation */
 .contact-header {
     text-align: center;
     margin-bottom: 2rem;
     animation: fadeInUp 0.6s ease-out;
 }

 .contact-header h1 {
     font-size: 2.8rem;
     background: linear-gradient(135deg, #FFFFFF, #D6E0FF);
     background-clip: text;
     -webkit-background-clip: text;
     color: #FFFFFF;
     margin-bottom: 0.5rem;
     font-weight: 800;
 }

 .contact-header p {
     font-size: 1.2rem;
     color: #E0E7FF;
     max-width: 650px;
     margin: 0 auto;
     line-height: 1.5;
 }

 /* two-column layout: contact form + info cards */
 .contact-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 2rem;
     margin: 2rem 0 3rem;
 }

 /* form column */
 .form-col {
     flex: 1.5;
     min-width: 280px;
     background: rgba(255, 255, 255, 0.95);
     border-radius: 32px;
     padding: 2rem 2rem;
     box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
     backdrop-filter: blur(2px);
     transition: transform 0.2s ease;
     border: 1px solid rgba(56, 82, 180, 0.2);
 }

 .form-col:hover {
     transform: translateY(-4px);
 }

 .form-col h2 {
     font-size: 1.8rem;
     color: #1e2a5e;
     margin-bottom: 0.5rem;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 0.7rem;
 }

 .form-col h2 i {
     color: #3852B4;
     font-size: 1.8rem;
 }

 .form-sub {
     color: #4a5568;
     margin-bottom: 1.8rem;
     border-left: 4px solid #FFC107;
     padding-left: 1rem;
     font-weight: 500;
 }

 .input-group {
     margin-bottom: 1.5rem;
 }

 .input-group label {
     display: block;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: #1e2a5e;
     font-size: 0.95rem;
 }

 .input-group input,
 .input-group textarea,
 .input-group select {
     width: 100%;
     padding: 0.9rem 1.2rem;
     border: 2px solid #e2e8f0;
     border-radius: 28px;
     font-size: 1rem;
     font-family: inherit;
     transition: all 0.25s;
     background: white;
     outline: none;
 }

 .input-group input:focus,
 .input-group textarea:focus,
 .input-group select:focus {
     border-color: #3852B4;
     box-shadow: 0 0 0 3px rgba(56, 82, 180, 0.2);
 }

 .input-group textarea {
     resize: vertical;
     border-radius: 28px;
 }

 .submit-btn {
     background: #3852B4;
     border: none;
     padding: 0.9rem 2rem;
     border-radius: 60px;
     color: white;
     font-weight: 700;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.25s ease;
     box-shadow: 0 4px 12px rgba(56, 82, 180, 0.3);
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .submit-btn:hover {
     background: #2a3f94;
     transform: scale(1.01);
     box-shadow: 0 10px 20px rgba(56, 82, 180, 0.4);
 }

 /* info column */
 .info-col {
     flex: 1;
     min-width: 260px;
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .contact-card {
     background: rgba(255, 255, 255, 0.93);
     backdrop-filter: blur(2px);
     border-radius: 28px;
     padding: 1.6rem 1.8rem;
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
     transition: all 0.25s ease;
     border-left: 8px solid #FFC107;
 }

 .contact-card:hover {
     transform: translateY(-5px);
     background: white;
     box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
 }

 .contact-card h3 {
     font-size: 1.4rem;
     color: #1e2a5e;
     margin-bottom: 0.6rem;
     font-weight: 700;
 }

 .contact-card p,
 .contact-card a {
     color: #2d3748;
     line-height: 1.5;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.2s;
 }

 .contact-card a:hover {
     color: #3852B4;
     text-decoration: underline;
 }

 /* office hours / additional */
 .office-badge {
     background: #FFC10720;
     padding: 0.5rem 1rem;
     border-radius: 40px;
     display: inline-block;
     font-size: 0.8rem;
     font-weight: 600;
     color: #1e2a5e;
     margin-top: 0.8rem;
 }

 /* message cta (simplified without extra fb section) */
 .message-cta {
     background: linear-gradient(120deg, #ffffff, #f5f7ff);
     border-radius: 36px;
     padding: 1rem 1.5rem;
     margin-top: 1rem;
     text-align: center;
     border: 1px solid rgba(56, 82, 180, 0.2);
 }

 .message-cta p {
     color: #1e2a5e;
     font-weight: 600;
     font-size: 0.95rem;
 }

 /* footer identical */
 footer {
     background: #FFC107;
     text-align: center;
     padding: 0.5rem;
     color: #1E2F4D;
     font-weight: 500;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     margin-top: -1.5rem;
 }

 .social {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 1rem;
 }

 .social a {
     color: #1E2F4D;
     font-size: 1.5rem;
     transition: 0.2s;
 }

 .social a:hover {
     color: #3852B4;
     transform: translateY(-2px);
 }

 hr {
     margin-top: 0.5rem;
     border: 1px solid white;
     margin-bottom: 0.5rem;
 }

 /* animations */
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* ripple animation */
 @keyframes rippleAnim {
     from {
         transform: scale(0);
         opacity: 0.6;
     }

     to {
         transform: scale(6);
         opacity: 0;
     }
 }

 .ripple {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 215, 0, 0.4);
     transform: scale(0);
     animation: rippleAnim 0.5s linear;
     pointer-events: none;
     z-index: 10;
 }

 /* responsive */
 @media (max-width: 768px) {
     header {
         padding: 0.8rem 1.2rem;
     }

     .brand {
         font-size: 1.4rem;
     }

     .contact-header h1 {
         font-size: 2rem;
     }

     .contact-header p {
         font-size: 1rem;
     }

     .form-col {
         padding: 1.5rem;
     }

     .contact-card h3 {
         font-size: 1.2rem;
     }
 }

 @media (max-width: 480px) {
    header {
        display: flex;
        justify-content: center;
        align-items: center;
    }
     .contact-header h1 {
         font-size: 1.6rem;
     }

     .form-col h2 {
         font-size: 1.4rem;
     }

     .form-sub {
         font-size: 0.8rem;
     }

     .submit-btn {
         font-size: 1rem;
     }
 }

 button,
 .submit-btn {
     position: relative;
     overflow: hidden;
 }