/* HEADER */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 26, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */


.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 92px;
  width: auto;
  transition: 0.3s ease;
}

.logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

/* When header turns white on scroll */
header.scrolled .logo span {
  color: #222;
}
header.scrolled .logo img {
  height: 92px;
}
@media (max-width: 768px) {
  .logo span {
    font-size: 1rem;
  }

  .logo img {
    height: 86px;
  }
}
@media (max-width: 480px) {
  .logo span {
    display: none;
  }
}
header.scrolled .logo span {
  color: #222;
}

/* NAV */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: #d0d7e2;
  text-decoration: none;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: #4aa3ff;
}

/* HEADER BUTTON */
.header-btn {
  background: #ff4b4b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.header-btn:hover {
  background: #e63b3b;
}

/* HERO BUTTONS */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ff4b4b;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: #e63b3b;
}

.btn-outline {
  border: 1px solid #ff4b4b;
  color: #ff4b4b;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline:hover {
  background: #ff4b4b;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #050b1a;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-cta {
  margin-top: 15px;
  background: #ff4b4b;
  padding: 14px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
}

/* VISIBILITY CONTROLS */
.desktop-only {
  display: inline-block;
}

/* SMALL SCREENS */
@media (max-width: 768px) {

  .main-nav {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
/* HEADER TRANSITION */
.site-header {
  transition: all 0.3s ease;
}

/* SHRINK STATE */
.site-header.scrolled {
  background: #ffffff;
  height: 65px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* LOGO COLOR CHANGE */
.site-header.scrolled .logo {
  color: #0a2540;
}

.site-header.scrolled .logo span {
  color: #0066ff;
}

/* NAV LINKS ON SCROLL */
.site-header.scrolled .main-nav a {
  color: #0a2540;
}

.site-header.scrolled .main-nav a:hover {
  color: #0066ff;
}

/* CONTACT BUTTON ON SCROLL */
.site-header.scrolled .header-btn {
  background: #0066ff;
  color: #ffffff;
}

.site-header.scrolled .header-btn:hover {
  background: #004fcc;
}

/* HAMBURGER COLOR CHANGE */
.site-header.scrolled .hamburger span {
  background: #0a2540;
}
/* ===== GLOBAL HELPERS ===== */
:root{
  --primary: #1e5eff;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --border: #e5e7eb;
  --card: #ffffff;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

.container{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-hero {
  background: linear-gradient(135deg, #0a58ca, #0d6efd);
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  color: #e9f1ff;
}
.contact-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #222;
}

.contact-info p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.7;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}
/* FORM CARD */
.contact-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* FORM GROUP */
.form-group {
  margin-bottom: 18px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  background: #ffffff;
  color: #111827;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.15);
}

/* BUTTON */
.form-btn {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13,110,253,0.35);
}

/* STATUS MESSAGE */
.form-status {
  margin-top: 15px;
  font-size: 0.95rem;
  text-align: center;
}
.contact-cta {
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-btn:hover {
  opacity: 0.9;
}
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.3rem;
  }
}
.contact-process {
  padding: 90px 20px;
  background: #ffffff;
}

.contact-process .container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.section-header p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Steps layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Individual step */
.process-step {
  background: #f8f9fb;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Step number */
.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* Step text */
.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #222;
}

.process-step p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.site-footer {
  background: #0a2540;
  color: #dbe7f5;
}

/* CTA STRIP INSIDE FOOTER */
.footer-cta {
  background: linear-gradient(135deg, #1b6ca8, #0d3b66);
  text-align: center;
  padding: 80px 20px;
}

.footer-cta h2 {
  font-size: 2.3rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #0a2540;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  background: #e6f0fa;
  transform: translateY(-2px);
}

/* FOOTER CONTENT */
.footer-content {
  padding: 70px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #dbe7f5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-contact li {
  font-size: 0.95rem;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .footer-cta h2 {
    font-size: 1.8rem;
  }

  .footer-content {
    padding: 50px 16px;
  }
}



