/* ===== Contact Page - Modern Design ===== */
:root {
  --white: #ffffff; --blue: #1e3a8a; --blue-light: #3b82f6;
  --blue-pale: #eff6ff; --black: #0f172a; --gray-dark: #374151;
  --gray: #64748b; --gray-light: #f8fafc; --border: #e2e8f0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: var(--white); color: var(--black); line-height: 1.6; }

.main-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.nav-container { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; }
.nav-logo { z-index: 1001; } .logo-image { height: 40px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 0.3rem; }
.nav-link { text-decoration: none; color: var(--gray-dark); font-weight: 500; font-size: 0.9rem; padding: 0.6rem 1rem; border-radius: 8px; transition: all 0.3s; }
.nav-link:hover { color: var(--blue); background: var(--blue-pale); }
.nav-link.active { color: white; background: var(--blue); font-weight: 600; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger-line { width: 24px; height: 2.5px; background: var(--black); border-radius: 4px; }

.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.ct-highlight { color: #0a20e5; }

/* ===== Hero ===== */
.ct-hero-modern { position: relative; padding: 4rem 0; overflow: hidden; background: var(--black); }
.ct-hero-bg { position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, #1e3a8a 0%, #0f172a 70%); }
.ct-shape { position: absolute; border-radius: 50%; }
.ct-shape-1 { width: 300px; height: 300px; background: rgba(59,130,246,0.1); top: -50px; right: -50px; }
.ct-shape-2 { width: 200px; height: 200px; background: rgba(245,158,11,0.08); bottom: -30px; left: 10%; }
.ct-shape-3 { width: 150px; height: 150px; border: 2px dashed rgba(255,255,255,0.1); top: 40%; right: 30%; animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.ct-hero-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.ct-pill { display: inline-block; background: rgba(255,255,255,0.1); color: #f59e0b; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; margin-bottom: 1rem; }
.ct-hero-text h1 { font-size: clamp(2.2rem, 4vw, 3rem); color: white; font-weight: 800; line-height: 1.15; }
.ct-hero-text p { color: #94a3b8; font-size: 1rem; margin: 1rem 0 1.5rem; }
.ct-hero-features { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ct-hero-features span { color: #cbd5e1; font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem; }
.ct-hero-features i { color: #10b981; }
.ct-floating-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; text-align: center; }
.ct-fc-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.ct-floating-card h3 { color: white; font-size: 1.2rem; margin-bottom: 1rem; }
.ct-floating-card a { display: block; color: #93c5fd; text-decoration: none; font-weight: 600; margin-bottom: 0.4rem; transition: color 0.3s; }
.ct-floating-card a:hover { color: white; }

/* ===== Form Section ===== */
.ct-form-section { padding: 4rem 0; background: var(--white); }
.ct-form-grid { display: grid; grid-template-columns: 1fr 350px; gap: 2.5rem; }
.ct-form-wrap { background: white; border-radius: 20px; padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 5px 30px rgba(0,0,0,0.04); }
.ct-form-header { text-align: center; margin-bottom: 2rem; }
.ct-form-badge { display: inline-block; background: #fef3c7; color: #0c26ec; padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.ct-form-wrap h2 { font-size: 1.6rem; font-weight: 800; }
.ct-form-header p { color: var(--gray); font-size: 0.9rem; margin-top: 0.3rem; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.ct-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-dark); margin-bottom: 0.3rem; }
.ct-input-wrap { display: flex; align-items: center; background: var(--gray-light); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all 0.3s; }
.ct-input-wrap:focus-within { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(59,130,246,0.08); }
.ct-input-wrap i { padding: 0 0.8rem; color: var(--gray); font-size: 0.9rem; }
.ct-input-wrap input { flex: 1; padding: 0.75rem 0.75rem 0.75rem 0; border: none; background: transparent; font-family: inherit; font-size: 0.9rem; outline: none; }
.ct-field select, .ct-field textarea { width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: 8px; background: var(--gray-light); font-family: inherit; font-size: 0.9rem; transition: all 0.3s; }
.ct-field select:focus, .ct-field textarea:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(59,130,246,0.08); }
.ct-field textarea { resize: vertical; }
.ct-secure-note { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1rem; background: #f0fdf4; border-radius: 8px; font-size: 0.8rem; color: #059669; margin-bottom: 1.2rem; }
.ct-submit-btn { width: 100%; padding: 1rem; background: linear-gradient(135deg, #1e3a8a, #3b82f6); color: white; border: none; border-radius: 10px; font-size: 1.05rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.6rem; transition: all 0.3s; }
.ct-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(30,58,138,0.4); }

/* ===== Info Sidebar ===== */
.ct-info-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem; text-align: center; margin-bottom: 0.8rem; transition: all 0.3s; }
.ct-info-card:hover { border-color: var(--blue-light); box-shadow: 0 8px 25px rgba(0,0,0,0.06); transform: translateY(-2px); }
.ct-info-card-icon { width: 48px; height: 48px; background: var(--blue-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--blue); margin: 0 auto 0.6rem; }
.ct-info-card h4 { font-size: 0.95rem; margin-bottom: 0.2rem;}
.ct-info-card a {text-decoration: none;}
.ct-info-card p { font-size: 0.85rem; color: var(--blue); font-weight: 600; }
.ct-info-card span { font-size: 0.75rem; color: var(--gray); }
.ct-social-card { background: var(--blue); border-radius: 14px; padding: 1.5rem; text-align: center; color: white; }
.ct-social-card h4 { margin-bottom: 1rem; }
.ct-social-icons { display: flex; justify-content: center; gap: 0.8rem; }
.ct-social-icons a { width: 40px; height: 40px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s; }
.ct-social-icons a:hover { background: white; color: var(--blue); }

/* ===== FAQ ===== */
.ct-faq-modern { padding: 3rem 0; background: var(--gray-light); }
.ct-faq-heading { text-align: center; font-size: 1.8rem; font-weight: 800; margin-bottom: 2rem; }
.ct-faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.ct-faq-item { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.ct-faq-item summary { padding: 1rem 1.5rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.ct-faq-item summary i { transition: transform 0.3s; color: var(--blue); }
.ct-faq-item[open] summary i { transform: rotate(180deg); }
.ct-faq-item p { padding: 0 1.5rem 1rem; color: var(--gray); font-size: 0.9rem; }

/* ===== Footer - Matching Solution Page ===== */
.footer-modern {
  background: #06080f;
  position: relative;
}

.footer-top {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-col-large {
  color: #cbd5e1;
}

.footer-logo-wrap {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form input:focus { outline: none; border-color: #3b82f6; }

.newsletter-form button {
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 2px;
}

.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 0.6rem; }

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links-list a i {
  font-size: 0.6rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.footer-links-list a:hover { color: white; padding-left: 5px; }
.footer-links-list a:hover i { color: #60a5fa; }

.footer-contact-list { list-style: none; }

.footer-contact-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-text p {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.contact-text a{
  text-decoration: none;
  color: #94a3b8;
}
.footer-bottom-bar { padding: 1.5rem 0; }

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-bottom-content strong { color: white; }

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: #60a5fa; }

.dot-divider {
  width: 3px;
  height: 3px;
  background: #4b5563;
  border-radius: 50%;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid-main { grid-template-columns: 1fr 1fr; }
  .footer-col-large { grid-column: 1 / -1; }
}
/* ===== Responsive ===== */
@media (max-width: 900px) { .ct-form-grid, .ct-hero-row { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: white; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; transform: translateX(-100%); transition: 0.4s; z-index: 1000; }
  .nav-menu.active { transform: translateX(0); }
  .nav-toggle.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open .hamburger-line:nth-child(2) { opacity: 0; }
  .nav-toggle.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .ct-form-row { grid-template-columns: 1fr; }

  .footer-grid-main { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-col-large { grid-column: 1; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-links-list a { justify-content: center; }
  .footer-contact-list li { justify-content: center; }
  .footer-bottom-content { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }}

  /* ===== Success Modal ===== */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.success-modal.active {
  display: flex;
}

.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.success-content {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 24px;
  max-width: 450px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successPop {
  0% { opacity: 0; transform: scale(0.7); }
  50% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

.success-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35px;
  height: 35px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #64748b;
  transition: all 0.3s;
}

.success-close:hover {
  background: #ef4444;
  color: white;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  animation: successBounce 0.6s ease 0.3s both;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.success-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.success-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  background: #f0fdf4;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}

.success-details span {
  font-size: 0.85rem;
  color: #065f46;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.success-details i {
  color: #10b981;
}

.success-btn {
  width: 100%;
  padding: 0.8rem;
  background: #1e3a8a;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.success-btn:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .success-content {
    padding: 2rem 1.5rem;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
  }
  
  .success-content h2 {
    font-size: 1.3rem;
  }
}


/* my code  */


/* =========================================================
   FOOTER BOTTOM LINKS
   ========================================================= */

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: #6c4cff;
}

.dot-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}


/* =========================================================
   POLICY MODAL
   ========================================================= */

.policy-modal {
  position: fixed;
  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 99999;
}

.policy-modal.active {
  display: flex;
}


/* Dark background */

.policy-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(10, 8, 35, 0.75);

  backdrop-filter: blur(5px);
}


/* =========================================================
   MODAL CONTAINER
   ========================================================= */

.policy-modal-content {
  position: relative;

  width: min(760px, 100%);
  max-height: 85vh;

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.30);

  z-index: 2;

  animation: policyModalIn 0.25s ease;
}


/* Animation */

@keyframes policyModalIn {

  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.policy-modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: #f1f2f6;

  color: #333;

  font-size: 15px;

  cursor: pointer;

  transition: all 0.2s ease;

  z-index: 3;
}

.policy-modal-close:hover {
  background: #321b9b;
  color: #ffffff;
  transform: rotate(90deg);
}


/* =========================================================
   MODAL HEADER
   ========================================================= */

.policy-modal-header {
  padding: 30px 35px 20px;

  border-bottom: 1px solid #e7e8ee;
}

.policy-label {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 8px;

  color: #321b9b;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.6px;
}

.policy-modal-header h2 {
  margin: 0;

  color: #111827;

  font-size: 26px;

  line-height: 1.3;
}


/* =========================================================
   MODAL BODY
   ========================================================= */

.policy-modal-body {
  max-height: calc(85vh - 120px);

  overflow-y: auto;

  padding: 25px 35px 35px;

  color: #555b6e;

  font-size: 14px;

  line-height: 1.75;
}

.policy-modal-body h3 {
  margin: 22px 0 8px;

  color: #1f2937;

  font-size: 17px;
}

.policy-modal-body h3:first-child {
  margin-top: 0;
}

.policy-modal-body p {
  margin: 0 0 14px;
}

.policy-modal-body ul {
  margin: 8px 0 16px;

  padding-left: 22px;
}

.policy-modal-body li {
  margin-bottom: 7px;
}

.policy-modal-body a {
  color: #321b9b;

  text-decoration: none;

  font-weight: 600;
}

.policy-modal-body a:hover {
  text-decoration: underline;
}


/* =========================================================
   PREVENT BACKGROUND SCROLL
   ========================================================= */

body.policy-modal-open {
  overflow: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .footer-bottom-links {
    justify-content: center;

    margin-top: 10px;
  }

  .policy-modal {
    padding: 12px;
  }

  .policy-modal-content {
    width: 100%;
    max-height: 90vh;

    border-radius: 14px;
  }

  .policy-modal-header {
    padding: 24px 20px 18px;
  }

  .policy-modal-header h2 {
    font-size: 21px;
  }

  .policy-modal-body {
    max-height: calc(90vh - 110px);

    padding: 20px;
  }

  .policy-modal-close {
    top: 12px;
    right: 12px;
  }

}
