/* layout.css — Top Bar · Header · Nav · Footer */

/* ── Top Bar ── */
.top-bar {
  background: var(--primary-h);
  padding: .44rem 0;
  font-size: .78rem;
  color: rgba(253, 255, 252, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-text i {
  margin-right: .35rem
}

.top-bar-phone {
  color: var(--color-teal);
  font-weight: 700;
  letter-spacing: .01em;
}

.top-bar-phone:hover {
  color: var(--cta-l);
  text-decoration: underline;
}

/* ── Site Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), background var(--t), border-color var(--t);
  padding-top: 10px;
  padding-bottom: 8px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 28px rgba(1, 22, 39, .11);
  border-bottom-color: rgba(46, 196, 182, .4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.logo-icon {
  width: 160px;
  height: 40px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--bg);
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--text);
  display: block;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.logo-tag {
  font-size: .62rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Main Nav ── */
.main-nav ul {
  display: flex;
  gap: .15rem;
  align-items: center;
}

.main-nav a {
  padding: .5rem .9rem;
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: .87rem;
  font-weight: 500;
  transition: var(--t);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: var(--bg-sec);
}

.main-nav a.active {
  font-weight: 600;
  color: var(--accent);
}

.nav-help {
  color: var(--accent) !important
}

.nav-help:hover {
  background: rgba(46, 196, 182, .12) !important
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 26px;
  height: 18px;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: var(--t);
}

.hamburger span:nth-child(1) {
  top: 0
}

.hamburger span:nth-child(2) {
  top: 8px
}

.hamburger span:nth-child(3) {
  top: 16px
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1, 22, 39, .6);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s;
  backdrop-filter: blur(2px);
}

.nav-overlay.show {
  display: block;
  opacity: 1
}

/* ── Page Hero ── */
.page-hero {
  background: var(--grad-hero);
  padding: 3.75rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 110%, rgba(46, 196, 182, .13) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 159, 28, .04);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin: .5rem 0;
  color: var(--bg);
  letter-spacing: -.02em;
  position: relative;
}

.page-hero p {
  color: white;
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.page-hero .section-badge {
  background: rgba(46, 196, 182, .2);
  color: var(--color-teal);
  border-color: rgba(46, 196, 182, .38);
  box-shadow: 0 0 20px rgba(46, 196, 182, .15);
  position: relative;
}

.page-hero--sm {
  padding: 2.5rem 0 2rem
}

.page-hero--sm h1 {
  font-size: 1.9rem
}

.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(253, 255, 252, .65);
  justify-content: center;
  margin-bottom: .55rem;
  position: relative;
}

.breadcrumb-bar a {
  color: rgba(253, 255, 252, .82)
}

.breadcrumb-bar a:hover {
  color: var(--bg)
}

.breadcrumb-bar i {
  font-size: .58rem
}

.breadcrumb-bar span {
  color: var(--bg)
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-alt);
  color: var(--text);
  border-top: 2px solid var(--border);
}

.footer-main {
  padding: 3.25rem 0 2.5rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-col-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 1rem;
  padding-bottom: .45rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links a {
  font-size: .845rem;
  color: var(--text-2);
  transition: var(--t);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: .3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .85rem;
}

.footer-logo .logo-name {
  color: var(--text)
}

.footer-logo .logo-tag {
  color: var(--text-3)
}

.footer-tagline {
  font-size: .835rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.footer-social {
  display: flex;
  gap: .55rem
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--bg-sec);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: .82rem;
  transition: all .22s ease;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.footer-contact-list li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .835rem;
  color: var(--text-2);
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: .18rem;
  flex-shrink: 0;
  font-size: .88rem;
}

.footer-contact-list a {
  color: var(--text)
}

.footer-contact-list a:hover {
  color: var(--accent)
}

.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  background: var(--bg-sec);
}

.footer-disclaimer p {
  font-size: .72rem;
  color: var(--text-2);
  line-height: 1.62;
  margin-bottom: .4rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0
}

.footer-disclaimer a {
  color: var(--accent);
  text-decoration: underline;
}

.footer-disclaimer a:hover {
  color: var(--primary)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.2rem 0;
  background: var(--primary);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
}

.footer-bottom p {
  font-size: .76rem;
  color: rgba(253, 255, 252, .65);
}

.footer-bottom-links {
  display: flex;
  gap: 1.2rem
}

.footer-bottom-links a {
  font-size: .76rem;
  color: rgba(253, 255, 252, .65);
  transition: var(--t);
}

.footer-bottom-links a:hover {
  color: var(--color-teal)
}


/* footer social Icons  */

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: start;
  /* Center on all screen sizes */
  flex-wrap: wrap;
  /* Wrap on smaller screens */
  margin: 10px 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e8f9f8;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #fff;
  transform: scale(1.1);
}

.map-container {
  margin: 20px auto;
  /* centers horizontally */
  width: 90%;
  /* responsive width */
  max-width: 1200px;
  /* optional max width */
  height: 250px;
  /* fixed height you want */
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ── Footer Trust Row ── */
.footer-trust-row {
  border-top: 1px solid var(--border);
  padding: .8rem 0;
  background: var(--bg-sec);
}

.footer-trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.8rem;
  align-items: center;
  justify-content: center;
}

.footer-payment-logos {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.footer-payment-logos span {
  font-size: .73rem;
  color: var(--text-3);
  margin-right: .2rem;
}

.footer-payment-logos i.fab {
  font-size: 1.45rem;
  color: var(--text-2);
}

.footer-trust-badge {
  font-size: .73rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: .28rem;
  padding: .28rem .6rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  white-space: nowrap;
}

.footer-trust-badge i {
  color: var(--accent);
  font-size: .7rem;
}

/* ══════════════════════════════════════════════
   Floating Call Button — Bottom-Left
   ══════════════════════════════════════════════ */
.floating-call-btn {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.2rem .65rem .8rem;
  background: var(--grad-teal);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .01em;
  box-shadow: 0 6px 24px rgba(46, 196, 182, .35),
              0 2px 8px rgba(1, 22, 39, .12);
  transition: all .3s cubic-bezier(.25, .8, .25, 1);
  cursor: pointer;
  overflow: visible;
}

.floating-call-btn:hover {
  background: linear-gradient(135deg, #24A99D 0%, #1A9488 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 35px rgba(46, 196, 182, .45),
              0 4px 12px rgba(1, 22, 39, .15);
  color: #fff;
  text-decoration: none;
}

.floating-call-btn:active {
  transform: translateY(-1px) scale(1.01);
}

/* Phone icon circle */
.floating-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  flex-shrink: 0;
  font-size: .95rem;
  transition: background .3s ease;
}

.floating-call-btn:hover .floating-call-icon {
  background: rgba(255, 255, 255, .32);
}

/* Phone number label */
.floating-call-label {
  white-space: nowrap;
  line-height: 1;
}

/* Pulse ring animation */
.floating-call-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  border: 2px solid rgba(46, 196, 182, .5);
  animation: floatingCallPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes floatingCallPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.25);
    opacity: 0;
  }
}