 /* ============================================
       GLOBAL VARIABLES & RESET
    ============================================ */
 :root {
   --primary-dark: #0A1931;
   --primary-blue: #1A3A6C;
   --accent-cyan: #00D4FF;
   --accent-teal: #2EC4B6;
   --neutral-light: #F8F9FA;
   --neutral-gray: #6C757D;
   --white: #FFFFFF;
   --gradient-primary: linear-gradient(135deg, #0A1931 0%, #1A3A6C 100%);
   --gradient-accent: linear-gradient(135deg, #00D4FF 0%, #2EC4B6 100%);
   --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
   --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.12);
   --border-radius: 12px;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
   scroll-padding-top: 80px;
 }

 body {
   font-family: 'Inter', sans-serif;
   color: var(--neutral-gray);
   background: var(--neutral-light);
   line-height: 1.6;
   overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4 {
   font-family: 'Montserrat', sans-serif;
   font-weight: 700;
   line-height: 1.3;
   margin-bottom: 1rem;
   color: var(--primary-dark);
 }

 h1 {
   font-size: 3.5rem;
   font-weight: 800;
 }

 h2 {
   font-size: 2.5rem;
   position: relative;
   display: inline-block;
 }

 h2::after {
   content: '';
   position: absolute;
   left: 39%;
   bottom: -8px;
   width: 60px;
   height: 4px;
   background: var(--gradient-accent);
   border-radius: 2px;
 }

 h3 {
   font-size: 1.5rem;
 }

 p {
   margin-bottom: 1.5rem;
   font-size: 1.125rem;
   color: #475569;
 }

 .container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
 }

 .section {
   padding: 100px 0;
 }

 .btn-primary {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: var(--gradient-accent);
   color: var(--white);
   padding: 16px 36px;
   border-radius: var(--border-radius);
   text-decoration: none;
   font-weight: 600;
   font-size: 1.1rem;
   border: none;
   cursor: pointer;
   transition: all 0.3s ease;
   text-align: center;
   border: 2px solid transparent;
 }

 .btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: var(--shadow-medium);
 }

 .section-eyebrow {
   display: inline-block;
   color: var(--accent-cyan);
   font-weight: 600;
   font-size: 0.875rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 1rem;
   padding: 6px 12px;
   background-color: rgba(0, 212, 255, 0.1);
   border-radius: 30px;
 }

 .text-center {
   text-align: center;
 }

 .text-center h2::after {
   left: 50%;
   transform: translateX(-50%);
 }

 /* ============================= */
 /* HERO SECTION */
 /* ============================= */
 .hero-section {
   background: var(--gradient-primary);
   padding: 140px 0 80px;
   text-align: center;
   position: relative;
   overflow: hidden;
 }

 .hero-section::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: 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='%2300D4FF' fill-opacity='0.05'%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");
 }

 .hero-content {
   position: relative;
   z-index: 1;
   max-width: 800px;
   margin: 0 auto;
   color: var(--white);
 }

 .hero-content h1 {
   color: var(--white);
 }

 .hero-subtitle {
   font-size: 1.25rem;
   color: rgba(255, 255, 255, 0.85);
   max-width: 700px;
   margin: 0 auto 2rem;
 }

 /* ============================= */
 /* EMAIL FOCUS SECTION */
 /* ============================= */
 .email-section {
   padding: 120px 0;
   background-color: var(--white);
 }

 .email-container {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
 }

 .email-icon {
   width: 120px;
   height: 120px;
   background: var(--gradient-accent);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 40px;
   position: relative;
   animation: pulse 2s infinite;
 }

 @keyframes pulse {
   0% {
     box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
   }

   70% {
     box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
   }

   100% {
     box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
   }
 }

 .email-icon i {
   font-size: 3rem;
   color: var(--white);
 }

 .email-address {
   font-size: 2rem;
   font-weight: 700;
   color: var(--primary-dark);
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
 }

 .email-address a {
   color: var(--primary-dark);
   text-decoration: none;
   transition: all 0.3s ease;
 }

 .email-address a:hover {
   color: var(--accent-cyan);
 }

 .email-cta {
   margin: 40px 0;
 }

 .email-cta .btn-primary {
   font-size: 1.2rem;
   padding: 18px 40px;
 }

 .email-note {
   background-color: rgba(0, 212, 255, 0.05);
   border-left: 4px solid var(--accent-cyan);
   padding: 20px;
   border-radius: 8px;
   margin-top: 40px;
   text-align: left;
 }

 .email-note h4 {
   color: var(--accent-cyan);
   margin-bottom: 10px;
 }

 /* ============================= */
 /* CONTACT METHODS */
 /* ============================= */
 .contact-methods {
   padding: 100px 0;
   background-color: var(--neutral-light);
 }

 .methods-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
   margin-top: 60px;
 }

 .method-card {
   background-color: var(--white);
   padding: 40px 30px;
   border-radius: var(--border-radius);
   box-shadow: var(--shadow-soft);
   text-align: center;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
 }

 .method-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: var(--gradient-accent);
 }

 .method-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-medium);
 }

 .method-icon {
   width: 70px;
   height: 70px;
   background: var(--gradient-primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
 }

 .method-icon i {
   font-size: 1.8rem;
   color: var(--accent-cyan);
 }

 .method-card h3 {
   margin-bottom: 15px;
 }

 .method-card p {
   margin-bottom: 20px;
   color: #475569;
 }

 .method-link {
   color: var(--accent-cyan);
   text-decoration: none;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: all 0.3s ease;
 }

 .method-link:hover {
   color: var(--primary-blue);
   gap: 12px;
 }

 /* ============================= */
 /* RESPONSE TIME INFO */
 /* ============================= */
 .response-section {
   padding: 80px 0;
   background-color: var(--white);
 }

 .response-container {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;
 }

 .response-cards {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-top: 40px;
 }

 .response-card {
   background-color: var(--neutral-light);
   padding: 30px;
   border-radius: var(--border-radius);
   box-shadow: var(--shadow-soft);
 }

 .response-card h3 {
   color: var(--accent-teal);
   margin-bottom: 10px;
 }

 .response-card p {
   font-size: 1rem;
   margin-bottom: 0;
 }

 /* ============================= */
 /* FAQ SECTION */
 /* ============================= */
 .faq-section {
   padding: 100px 0;
   background-color: var(--neutral-light);
 }

 .faq-container {
   max-width: 800px;
   margin: 0 auto;
 }

 .faq-item {
   background-color: var(--white);
   margin-bottom: 15px;
   border-radius: var(--border-radius);
   overflow: hidden;
   box-shadow: var(--shadow-soft);
 }

 .faq-question {
   padding: 25px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transition: all 0.3s ease;
 }

 .faq-question:hover {
   background-color: rgba(0, 212, 255, 0.05);
 }

 .faq-question h3 {
   margin-bottom: 0;
   font-size: 1.25rem;
 }

 .faq-question i {
   color: var(--accent-cyan);
   transition: transform 0.3s ease;
 }

 .faq-answer {
   padding: 0 25px;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease, padding 0.3s ease;
 }

 .faq-answer.active {
   padding: 0 25px 25px;
   max-height: 300px;
 }

 /* ============================= */
 /* CTA SECTION */
 /* ============================= */
 .cta-section {
   background: var(--gradient-primary);
   padding: 100px 0;
   text-align: center;
   color: var(--white);
 }

 .cta-section h2 {
   color: var(--white);
   margin-bottom: 20px;
 }

 .cta-section p {
   color: rgba(255, 255, 255, 0.9);
   max-width: 700px;
   margin: 0 auto 40px;
   font-size: 1.25rem;
 }

 .cta-section .btn-primary {
   background: var(--gradient-accent);
   color: var(--white);
   border-color: transparent;
 }

 .cta-section .btn-primary:hover {
   background: linear-gradient(135deg, #00c4e8 0%, #28b4a8 100%);
 }

 /* ============================= */
 /* RESPONSIVE STYLES */
 /* ============================= */
 @media (max-width: 992px) {
   h1 {
     font-size: 3rem;
   }

   h2 {
     font-size: 2.25rem;
   }

   .methods-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .response-cards {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 768px) {
   .container {
     padding: 50px 0 20px;
   }

   .section {
     padding: 80px 0;
   }

   h1 {
     font-size: 2.5rem;
   }

   h2 {
     font-size: 2rem;
   }

   .hero-section {
     padding: 120px 0 60px;
   }

   .email-address {
     font-size: 1.5rem;
     flex-direction: column;
     gap: 5px;
   }

   .methods-grid {
     grid-template-columns: 1fr;
   }

   .response-cards {
     grid-template-columns: 1fr;
   }
 }

 @media (max-width: 576px) {
   h1 {
     font-size: 2.25rem;
   }

   .hero-section {
     padding: 100px 0 40px;
   }

   .email-address {
     font-size: 1.3rem;
   }

   .email-cta .btn-primary {
     font-size: 1rem;
     padding: 15px 30px;
   }
 }

 /* =========================================================
   CONTACT FORM – EMAIL SECTION
   Professional | Modern | Responsive
========================================================= */

 .email-section {
   padding: 5rem 0;
   background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
 }

 .email-container {
   max-width: 760px;
   margin: 0 auto;
   background: #ffffff;
   padding: 3rem 3.5rem;
   border-radius: 26px;
   text-align: center;
   box-shadow:
     0 25px 50px rgba(0, 0, 0, 0.08),
     0 10px 20px rgba(0, 0, 0, 0.04);
   position: relative;
 }

 /* ===== ICON ===== */
 .email-icon {
   width: 72px;
   height: 72px;
   background: linear-gradient(135deg, #2563eb, #4f46e5);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.2rem;
   color: #fff;
   font-size: 1.7rem;
   box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
 }

 /* ===== HEADINGS ===== */
 .email-container h2 {
   font-size: 2rem;
   font-weight: 800;
   margin-bottom: 0.6rem;
   color: #0f172a;
 }

 .email-container p {
   color: #475569;
   max-width: 520px;
   margin: 0 auto 2.5rem;
   line-height: 1.6;
 }

 /* =========================================================
   FORM
========================================================= */

 .contact-form {
   text-align: left;
   margin-top: 2rem;
 }

 .contact-form .form-group {
   margin-bottom: 1.3rem;
 }

 .contact-form label {
   display: block;
   font-weight: 600;
   font-size: 0.9rem;
   margin-bottom: 0.4rem;
   color: #1f2937;
 }

 .contact-form .form-control {
   width: 100%;
   padding: 0.8rem 1rem;
   border-radius: 14px;
   border: 1px solid #e5e7eb;
   font-size: 0.95rem;
   transition: all 0.2s ease;
   background: #f9fafb;
 }

 .contact-form .form-control:focus {
   outline: none;
   border-color: #2563eb;
   background: #fff;
   box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
 }

 /* ===== TEXTAREA ===== */
 .contact-form textarea.form-control {
   resize: vertical;
   min-height: 120px;
 }

 /* =========================================================
   SUBMIT BUTTON
========================================================= */

 .email-cta {
   text-align: center;
   margin-top: 2rem;
 }

 .btn-primary {
   display: inline-flex;
   align-items: center;
   gap: 0.6rem;
   background: linear-gradient(135deg, #2563eb, #4f46e5);
   color: #ffffff;
   padding: 0.8rem 2.8rem;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   font-size: 0.95rem;
   cursor: pointer;
   box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
   transition: all 0.25s ease;
 }

 .btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
 }

 /* =========================================================
   INFO NOTE
========================================================= */

 /* =========================================================
   WHAT HAPPENS NEXT – INFO CARD
========================================================= */

 .email-note {
   margin-top: 3rem;
   padding: 1.6rem 1.8rem;
   background: linear-gradient(135deg, #f1f5ff, #eef2ff);
   border-radius: 18px;
   display: flex;
   gap: 1rem;
   align-items: flex-start;
   box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.15);
 }

 /* ICON BADGE */
 .email-note::before {
   content: "✔";
   flex-shrink: 0;
   width: 36px;
   height: 36px;
   background: #4f46e5;
   color: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.9rem;
   font-weight: 700;
   box-shadow: 0 6px 14px rgba(79, 70, 229, 0.35);
 }

 /* TEXT */
 .email-note h4 {
   font-size: 1rem;
   font-weight: 700;
   margin: 0 0 0.25rem;
   color: #1e1b4b;
 }

 .email-note p {
   margin: 0;
   font-size: 0.88rem;
   color: #475569;
   line-height: 1.6;
 }

 /* MOBILE */
 @media (max-width: 480px) {
   .email-note {
     padding: 1.4rem;
     gap: 0.8rem;
   }
 }

 /* =========================================================
   RESPONSIVE
========================================================= */

 @media (max-width: 768px) {
   .email-container {
     padding: 2.2rem 1.8rem;
     border-radius: 20px;
   }

   .email-container h2 {
     font-size: 1.6rem;
   }

   .btn-primary {
     width: 100%;
     justify-content: center;
   }
 }