/* =========================
   ROOT VARIABLES (THEME)
========================= */
:root {
  --primary: #1f3a5f;          /* Deep premium blue */
  --secondary: #0f766e;        /* Teal accent */
  --light-bg: #f4f7fb;
  --dark: #111827;
  --gray: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
}

/* =========================
   GLOBAL RESET
========================= */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--light-bg);
  line-height: 1.6;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: var(--primary);
}

p {
  color: var(--gray);
}

.green, .green-s {
  color: var(--primary) !important;
  font-weight: 800;
}

.gray {
  color: var(--gray);
}

.white {
  color: #fff !important;
}

/* =========================
   NAVBAR & LOGO
========================= */
.logo {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--secondary);
}

/* =========================
   BUTTONS
========================= */
.btn-primary,
.btn-success-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-success-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* =========================
   CARDS (GLOBAL)
========================= */
.card {
  border-radius: 16px;
  border: none;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card h2, .card h4 {
  margin-bottom: 0.5rem;
}

.card p {
  margin-bottom: 1.2rem;
}

/* =========================
   WHY CHOOSE US
========================= */
.whyus-icon {
  height: 72px;
  width: 72px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.whyus-icon i {
  font-size: 2rem;
  color: var(--primary);
}

/* =========================
   TESTIMONIALS
========================= */
#testimonials .item {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin: 15px;
}

#testimonials p {
  font-style: italic;
  color: var(--gray);
}

/* =========================
   SECTIONS
========================= */
.bg-l-green {
  background-color: var(--light-bg);
}

.bg-success {
  background-color: var(--primary) !important;
}

.bg-dark {
  background-color: #0b1220 !important;
}

/* =========================
   FAQ
========================= */
#faq img {
    width: 48% !important;
    border-radius: 16px;
    height: 120px;
    margin-top: 57px;
}

/* =========================
   FORMS
========================= */
.form-control,
.form-select {
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.15);
}

label.error {
  font-size: 0.9rem;
  color: red;
}

/* =========================
   OFFCANVAS
========================= */
.offcanvas {
  width: 260px;
}

.offcanvas .nav-link {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}

/* =========================
   FOOTER
========================= */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: #cbd5e1;
}

.footer-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.footer-link:hover {
  opacity: 0.85;
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================
   SCROLL TO TOP
========================= */
#scrollToTopBtn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  display: none;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* =========================
   RESPONSIVENESS
========================= */
@media (max-width: 992px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .card {
    margin-bottom: 20px;
  }
  .logo {
    width: 56px !important;
    height: 56px !important;
  }
}

@media (max-width: 576px) {
  #scrollToTopBtn {
    bottom: 150px;
  }
  .whatsapp-float {
    bottom: 85px;
  }
  #faq img {
  width: 100% !important;
  border-radius: 16px !important;
  height: auto !important;
    margin-top: 10px;
}
}
