/* Why Us Cards Hover Animation */
.why-us-card {
  transition: background 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}
.why-us-card .icon {
  transition: color 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
}
.why-us-card:hover {
  background: linear-gradient(120deg, #1565c0 60%, #00bcd4 100%);
  box-shadow: 0 4px 24px rgba(21,101,192,0.13);
}
.why-us-card:hover .icon {
  color: #fff;
  transform: scale(1.18) rotate(-6deg);
}
.why-us-card:hover div {
  color: #fff;
}
/* Header, footer, buttons, cards, nav, etc. */
.site-header, .site-footer {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10,61,107,0.04);
}
.header-top {
  background: var(--primary-light);
  color: var(--white);
  padding: 0.3em 0.8em;
  font-size: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7em 0;
}
.logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1em;
  padding: 0.3em 0.8em;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links .active {
  background: var(--accent);
  color: var(--white);
}
.nav-cta {
  background: var(--accent-warm);
  color: var(--white) !important;
  font-weight: 900;
  padding: 0.3em 1.2em;
  border-radius: 24px;
  margin-right: 0.5em;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1201;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,61,107,0.25);
  z-index: 1200;
}
.has-dropdown:hover .dropdown {
  display: block;
}
.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 2.5em;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(10,61,107,0.08);
  border-radius: 12px;
  min-width: 180px;
  z-index: 100;
}
.dropdown li a {
  display: block;
  padding: 0.7em 1.2em;
  color: var(--primary);
  font-size: 1em;
}
.dropdown li a:hover {
  background: var(--bg-light);
}
.site-footer {
  padding: 2em 0 0.5em 0;
  color: var(--text-muted);
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 1.5em;
}
.footer-col h3 {
  font-size: 1.1em;
  color: var(--primary);
  margin-bottom: 0.7em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.5em;
}
.footer-bottom {
  text-align: center;
  padding: 1em 0 0.2em 0;
  font-size: 0.95em;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.footer-grid-redesign {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1.2fr;
  gap: 2.5em;
  align-items: flex-start;
  padding-bottom: 0.5em;
}
.footer-brand {
  text-align: right;
}
.footer-desc {
  color: var(--text-dark);
  font-size: 1.08em;
  line-height: 1.7;
  margin-top: 0.5em;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 2.5em;
  justify-content: center;
  text-align: right;
}
.footer-links h3 {
  margin-bottom: 0.5em;
}
.footer-links ul {
  margin-bottom: 1.2em;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 2.5em;
  justify-content: flex-end;
  text-align: right;
}
.footer-contact h3 {
  margin-bottom: 0.5em;
}
.footer-contact ul {
  margin-bottom: 1.2em;
}
@media (max-width: 900px) {
  .main-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 85vw;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 16px rgba(10,61,107,0.10);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
    padding: 2.5em 1.5em 1.5em 1.5em;
    z-index: 1202;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,1.3,.6,1);
    overflow-y: auto;
    font-size: 1.18em;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .mobile-nav-overlay {
    display: none;
  }
  .nav-links.open ~ .mobile-nav-overlay {
    display: block;
  }
  .nav-links li {
    width: 100%;
    margin-bottom: 0.7em;
  }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 1.18em;
    padding: 0.7em 1em;
    border-radius: 12px;
    text-align: right;
  }
  .nav-cta {
    font-size: 1.18em;
    padding: 0.7em 1em;
    margin: 0.5em 0 0 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .footer-grid-redesign {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding-bottom: 0.5em;
  }
  .footer-col {
    width: 100%;
    min-width: 0;
    margin-bottom: 1.2em;
    text-align: right;
  }
  .footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    align-items: flex-start;
    width: 100%;
  }
  .footer-links > div, .footer-contact > div {
    width: 100%;
    margin-bottom: 0.7em;
  }
  .footer-links ul, .footer-contact ul {
    display: block;
    padding-right: 0;
    margin-bottom: 0.7em;
  }
  .footer-links h3, .footer-contact h3 {
    font-size: 1.08em;
    margin-bottom: 0.4em;
  }
  .footer-desc {
    font-size: 0.98em;
    line-height: 1.7;
    margin-bottom: 0.7em;
  }
}
@media (max-width: 600px) {
  .footer-main.container {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .footer-col {
    margin-bottom: 0.8em;
  }
  .footer-desc {
    font-size: 0.93em;
  }
  .footer-bottom {
    font-size: 0.92em;
    padding: 0.7em 0 0.2em 0;
  }
  .footer-brand img {
    width: 44px;
    height: 44px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse 2s infinite;
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.15); }
.whatsapp-tooltip {
  display: none;
  position: absolute;
  left: 70px;
  background: #25D366;
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 8px;
  font-size: 1em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(37,211,102,0.15);
}
.whatsapp-float:hover .whatsapp-tooltip {
  display: block;
}
.cta-section {
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: 24px;
  padding: 2.5em 1.5em;
  margin: 2em 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,61,107,0.08);
}
.cta-bg-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0.08;
  background: url('/images/hero-bg.webp') center/cover no-repeat;
  z-index: 0;
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-buttons {
  margin-top: 1.5em;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: flex-start;
}
