/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
}
.navbar .nav-link.active {
  color: #2563eb !important;
  font-weight: 700;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #2563eb;
  color: #fff;
  font-size: 14px;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

/* HEADER */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* LOGO */
.logo img {
  height: 46px;
}

/* NAV */
.nav ul {
  display: flex;
  list-style: none;
}

.nav ul li {
  margin: 0 16px;
}

.nav ul li a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
}

/* CTA */
.header-cta {
  display: flex;
  align-items: center;
}

.btn-primary {
  background: #2563eb;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-right: 15px;
}

.call-box {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.call-box i {
  color: #2563eb;
  margin-right: 6px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 15px;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #1e293b;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* HAMBURGER ACTIVE */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE NAV */
@media (max-width: 992px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
  }

  .nav ul li {
    margin: 12px 0;
  }

  .btn-primary,
  .call-box {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ================= MODAL ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,6,23,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 420px;
  width: 90%;
  position: relative;
}

.modal-box h3 {
  text-align: center;
  margin-bottom: 6px;
}

.modal-box p {
  text-align: center;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.modal-box input,
.modal-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.modal-box button {
  width: 100%;
  background: #2563eb;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
}


/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("../image/hero-bg.jfif")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 90px 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(3, 7, 18, 0.833),
    rgba(15, 23, 42, 0.179)
  );
}

/* WRAPPER */
.hero-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  z-index: 2;
}

/* LEFT */
.hero-left {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  color: #93c5fd;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 22px;
}

.hero-left h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-left h1 span {
  color: #2563eb;
}

.hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 560px;
  margin-bottom: 26px;
}

.hero-list {
  list-style: none;
  margin-bottom: 32px;
}

.hero-list li {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.hero-list i {
  color: #22c55e;
  margin-right: 10px;
}

/* CTA */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.btn-call {
  background: #2563eb !important;
  padding: 14px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.btn-whatsapp {
  background: #22c55e;
  padding: 14px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.hero-trust {
  font-size: 14px;
  color: #9ca3af;
}

/* FORM */
.hero-form {
  background: #060c1a;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
   height: 430px;
}

.hero-form h3 {
  font-size: 22px;
  color: white;
  text-align: center;
  margin-bottom: 6px;
 
}

.form-subtitle {
  text-align: center;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  margin-bottom: 14px;
  font-size: 15px;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
}

.hero-form button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: #475569;
  text-align: center;
  margin-top: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .hero-form {
    max-width: 420px;
    margin: auto;
  }
}


/* ABOUT SECTION */
.about-section {
  position: relative;
  padding: 120px 20px;
  background: #f8fafc;
  overflow: hidden;
}

/* BACKGROUND SHAPES */
.about-shape {
  position: absolute;
  z-index: 0;
}

.shape-one {
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 50%;
  top: -90px;
  left: -90px;
}

.shape-two {
  width: 220px;
  height: 220px;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 50%;
  bottom: -70px;
  right: 80px;
}

.shape-dots {
  width: 160px;
  height: 160px;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 10px 10px;
  top: 80px;
  right: 40px;
}

/* CONTAINER */
.about-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 70px;
  z-index: 2;
}

/* CONTENT */
.about-content {
  color: #0f172a;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-content h2 span {
  color: #2563eb;
}

.about-text {
  font-size: 17px;
  line-height: 1.75;
  color: #475569;
  max-width: 560px;
  margin-bottom: 18px;
}

/* POINTS */
.about-points {
  list-style: none;
  margin-bottom: 32px;
}

.about-points li {
  font-size: 16px;
  color: #334155;
  margin-bottom: 10px;
}

.about-points i {
  color: #22c55e;
  margin-right: 10px;
}

/* CTA */
.about-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-call {
  background: #2563eb;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

.cta-whatsapp {
  background: #22c55e;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

/* IMAGE */
.about-image {
  display: flex;
  justify-content: center;
}

.image-circle {
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: #e0e7ff;
  padding: 14px;
}

.image-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-points {
    text-align: left;
    display: inline-block;
  }

  .about-cta {
    justify-content: center;
  }
}
/* ==============================
   WHY CHOOSE SECTION
================================ */
.why-choose-section {
  position: relative;
  padding: 110px 20px;
  background: #f8fafc;
  overflow: hidden;
}

/* BACKGROUND SHAPES */
.why-shape {
  position: absolute;
  z-index: 0;
}

.shape-a {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.shape-b {
  width: 180px;
  height: 180px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

/* CONTAINER */
.why-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

/* HEADER */
.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.why-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.why-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ==============================
   CARD
================================ */
.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 38px 28px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition:
    background-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* CARD HOVER */
.why-card:hover {
  background: #2563eb;
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
}

/* CARD TITLE */
.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* CARD TEXT */
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  transition: color 0.3s ease;
}

/* TEXT COLOR ON HOVER */
.why-card:hover h3,
.why-card:hover p {
  color: #ffffff;
}

/* ==============================
   ICON
================================ */
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* ICON COLORS (DEFAULT) */
.why-icon.blue {
  background: rgba(37, 99, 235, 0.15);
  color: #2563eb;
}

.why-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.why-icon.orange {
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
}

.why-icon.yellow {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

/* ICON ON CARD HOVER */
.why-card:hover .why-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 32px 24px;
  }
}

/* ==============================
   SERVICES SECTION
================================ */

.fsr-services-section {
  position: relative;
  padding: 120px 20px;
  background: #f8fafc;
  overflow: hidden;
}

/* BACKGROUND SHAPES */
.fsr-services-shape {
  position: absolute;
  z-index: 0;
}

.fsr-services-shape-one {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  top: -100px;
  left: -80px;
}

.fsr-services-shape-two {
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  bottom: -70px;
  right: -70px;
}

/* CONTAINER */
.fsr-services-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

/* HEADER */
.fsr-services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.fsr-services-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.fsr-services-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
}

/* GRID */
.fsr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.fsr-service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fsr-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* IMAGE */
.fsr-service-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* TITLE */
.fsr-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
  padding: 16px;
  text-align: center;
}

/* ACTION BUTTON BAR (FIXED + UNIFIED UI) */
.fsr-service-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}

.fsr-service-actions a {
  padding: 13px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* WHATSAPP */
.fsr-btn-wa {
  background: #22c55e;
  border-radius: 0 0 0 18px;
}

.fsr-btn-wa:hover {
  background: #16a34a;
}

/* ENQUIRY */
.fsr-btn-enquiry {
  background: #d97706;
}

.fsr-btn-enquiry:hover {
  background: #b45309;
}

/* CALL NOW */
.fsr-btn-call {
  background: #000000;
  border-radius: 0 0 18px 0;
}

.fsr-btn-call:hover {
  background: #020617;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .fsr-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fsr-services-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .fsr-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   EASY STEPS SECTION
================================ */
.steps-section {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(120deg, #020617, #0f172a);
  overflow: hidden;
}

/* BACKGROUND SHAPES */
.steps-bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shape-left {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.15);
  top: -100px;
  left: -80px;
}

.shape-right {
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.12);
  bottom: -70px;
  right: -70px;
}

/* CONTAINER */
.steps-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

/* HEADER */
.steps-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.steps-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.steps-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* GRID */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.step-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.6);
}

/* ICON */
.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(37, 99, 235, 0.25);
  color: #ffffff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* NUMBER */
.step-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 10px;
}

/* TITLE */
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* TEXT */
.step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 34px 24px;
  }
}

/* ==============================
   GALLERY SECTION
================================ */
.gallery-section {
  padding: 120px 20px;
  background: #f8fafc;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.gallery-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.gallery-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.gallery-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}
/* ==============================
   CONTACT SECTION
================================ */
.contact-section {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(120deg, #020617, #0f172a);
  overflow: hidden;
}

/* BACKGROUND SHAPES */
.contact-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shape-left {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.18);
  top: -100px;
  left: -80px;
}

.shape-right {
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.15);
  bottom: -70px;
  right: -70px;
}

/* CONTAINER */
.contact-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  z-index: 2;
}

/* LEFT INFO */
.contact-info {
  color: #ffffff;
}

.contact-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 14px;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-info h2 span {
  color: #60a5fa;
}

.contact-text {
  font-size: 17px;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 520px;
  margin-bottom: 30px;
}

/* DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 20px;
  color: #22c55e;
  margin-top: 4px;
}

.contact-item strong {
  font-size: 15px;
  color: #ffffff;
}

.contact-item p {
  font-size: 14px;
  color: #cbd5e1;
}

/* CTA */
.contact-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-call {
  background: #f97316;
  padding: 14px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.btn-whatsapp {
  background: #22c55e;
  padding: 14px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* FORM */
.contact-form {
  background: #15223e;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contact-form h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 6px;
  text-align: center;
}

.contact-form p {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  margin-bottom: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info h2 {
    font-size: 34px;
  }

  .contact-form {
    max-width: 420px;
    margin: auto;
  }
}
/* ==============================
   FOOTER SECTION
================================ */
.footer-section {
  background: #2563eb;
  padding: 80px 20px 0;
  color: #cbd5e1;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 18px;
}

/* SOCIAL */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(37, 99, 235, 0.25);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  margin-right: 10px;
  text-decoration: none;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #60a5fa;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #22c55e;
  margin-right: 8px;
}

/* CTA */
.footer-cta {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-call {
  background: #f97316;
  padding: 10px 20px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.footer-wa {
  background: #22c55e;
  padding: 10px 20px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* floating-actions  */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  cursor: pointer;
  text-decoration: none;
}

.float-btn.call {
  background: #2563eb;
}

.float-btn.whatsapp {
  background: #22c55e;
}

.float-btn.top {
  background: #0f172a;
  display: none;
}
