/* ============================================
   Template 2: Emerald & Teal — Paygate
   Font: Geist (Google Fonts)
   Primary: #0B5D3E | Accent: #14AB72
   Dark: #062A1C | Light bg: #f0faf4
   ============================================ */

/* === Font Face (Geist) === */
/* Loaded via Google Fonts CDN */

/* === CSS Variables === */
:root {
  --primary: #0B5D3E;
  --primary-rgb: 11, 93, 62;
  --accent: #14AB72;
  --accent-rgb: 20, 171, 114;
  --dark: #062A1C;
  --dark-rgb: 6, 42, 28;
  --light-bg: #f0faf4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --text-muted: #777777;
  --border-color: rgba(11, 93, 62, 0.15);
}

/* === Base === */
body {
  font-family: 'Geist', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  color: var(--dark);
}

/* === Navigation === */
.navbar-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.content-wrap {
  padding: 0 1.5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.navbar-brand img.small-radius {
  border-radius: 8px;
  height: 3.7rem;
  width: auto;
}

.navbar-caption {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  margin-left: 0.5rem;
}

.nav-link.link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-link.link:hover {
  color: var(--accent) !important;
}

.nav-link.link.active {
  color: var(--accent) !important;
  position: relative;
  font-weight: 600;
}

.nav-link.link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.navbar-buttons .btn-secondary {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.navbar-buttons .btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* === Hero Section === */
.hero-section {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--light-bg);
}

/* Decorative Border Wraps */
.border-wrap {
  position: relative;
  padding: 12px;
}

.border-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  opacity: 0.3;
}

.border-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-bottom: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  opacity: 0.3;
}

.border-wrap.border_1::before {
  top: 8px;
  left: 8px;
  width: 60px;
  height: 60px;
  border-color: var(--accent);
}

.border-wrap.border_1::after {
  bottom: 8px;
  right: 8px;
  width: 60px;
  height: 60px;
  border-color: var(--accent);
}

.border-wrap.border_2::before {
  top: 4px;
  left: 4px;
  width: 40px;
  height: 40px;
}

.border-wrap.border_2::after {
  bottom: 4px;
  right: 4px;
  width: 40px;
  height: 40px;
}

/* Cross patterns */
.frame-wrapper {
  position: relative;
  padding: 40px;
  margin: 20px 0;
}

.cross-section {
  position: absolute;
  width: 30px;
  height: 30px;
}

.cross-section::before,
.cross-section::after {
  content: '';
  position: absolute;
  background: var(--primary);
  opacity: 0.12;
}

.cross-section::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cross-section::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.cross_1 { top: 20px; left: 20px; }
.cross_2 { top: 20px; right: 20px; }
.cross_3 { bottom: 20px; left: 20px; }
.cross_4 { bottom: 20px; right: 20px; }

/* Corner wrappers */
.corner-wrapper {
  position: relative;
}

.corner_1::before,
.corner_1::after,
.corner_2::before,
.corner_2::after,
.corner_3::before,
.corner_3::after,
.corner_4::before,
.corner_4::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.4;
}

.corner_1::before { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
.corner_1::after { top: -10px; right: -10px; border-width: 2px 2px 0 0; }
.corner_2::before { bottom: -10px; left: -10px; border-width: 0 0 2px 2px; }
.corner_2::after { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }
.corner_3::before { top: -5px; left: -5px; border-width: 2px 0 0 2px; border-color: var(--primary); }
.corner_3::after { top: -5px; right: -5px; border-width: 2px 2px 0 0; border-color: var(--primary); }
.corner_4::before { bottom: -5px; left: -5px; border-width: 0 0 2px 2px; border-color: var(--primary); }
.corner_4::after { bottom: -5px; right: -5px; border-width: 0 2px 2px 0; border-color: var(--primary); }

/* Card wrapper */
.card-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
  margin: 30px 0;
}

.card-wrapper.large-radius {
  border-radius: 24px;
}

/* === Buttons === */
.btn-black {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-black:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(11, 93, 62, 0.3);
}

.btn-info {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-info:hover {
  background: var(--primary);
  color: #fff;
}

/* === Hero Split Layout === */
.hero-split {
  padding: 80px 0 60px;
}

.hero-split h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-split p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* === Section Styles === */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Services Cards */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(11, 93, 62, 0.12);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 1.8rem;
}

.service-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Parallax Section */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 42, 28, 0.8);
}

.parallax-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.parallax-content h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.parallax-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Geist', sans-serif;
  transition: all 0.3s ease;
}

.contact-form-wrap .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(20, 171, 114, 0.15);
}

.contact-form-wrap textarea.form-control {
  min-height: 140px;
}

/* Contact Info Cards */
.contact-info-card {
  text-align: center;
  padding: 30px 20px;
}

.contact-info-card .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info-card h6 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* Map Section */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* About/Mission Section */
.about-image-wrap img,
.mission-image-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* === FAQ Accordion === */
.faq-section {
  padding: 80px 0;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 10px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: #fff;
  box-shadow: none !important;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--light-bg);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B5D3E' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B5D3E' stroke-width='2'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 1.2rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* === Team / Testimonials === */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--light-bg);
}

.testimonial-card .quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Service Features with Icons */
.feature-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Numbers / Stats */
.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* === Footer === */
.footer01 {
  background: var(--dark);
  color: #fff;
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer01 a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer01 a:hover {
  color: var(--accent);
}

.footer01 .policy-links a {
  margin: 0 8px;
}

.footer01 .copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

/* === Page Hero (Sub Pages) === */
.page-hero {
  background: var(--light-bg);
  padding: 140px 0 60px;
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Content sections for sub-pages */
.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* Tables for privacy / policies */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.policy-table th {
  background: var(--light-bg);
  color: var(--dark);
  font-weight: 600;
  padding: 12px 15px;
  text-align: left;
  border: 1px solid var(--border-color);
}

.policy-table td {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  color: var(--text-light);
}

/* === Responsive === */
@media (max-width: 991px) {
  .hero-split h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .parallax-section {
    background-attachment: scroll;
    padding: 60px 0;
  }

  .parallax-content h2 {
    font-size: 1.8rem;
  }

  .card-wrapper {
    padding: 25px;
    margin: 20px 0;
  }

  .frame-wrapper {
    padding: 20px;
  }

  .page-hero {
    padding: 120px 0 40px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .content-section {
    padding: 50px 0;
  }

  .navbar-fixed-top {
    padding: 0.3rem 0;
  }

  .content-wrap {
    padding: 0 1rem;
  }

  .navbar-brand img.small-radius {
    height: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-split h2 {
    font-size: 1.7rem;
  }

  .hero-split p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .border-wrap::before,
  .border-wrap::after {
    width: 30px;
    height: 30px;
  }

  .cross-section {
    width: 20px;
    height: 20px;
  }

  .contact-form-wrap {
    padding: 25px;
  }

  .footer01 {
    text-align: center;
    padding: 30px 0;
  }

  .footer01 .policy-links a {
    display: inline-block;
    margin: 4px 6px;
  }

  .service-card img {
    height: 180px;
  }
}

/* === Utility === */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-light-page { background: var(--light-bg); }
.bg-primary { background: var(--primary) !important; }
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }

.display-1 { font-size: 3.2rem; font-weight: 700; }
.display-2 { font-size: 2.4rem; font-weight: 600; }
.display-4 { font-size: 1rem; }
.display-5 { font-size: 1.25rem; font-weight: 600; }
.display-7 { font-size: 1.1rem; font-weight: 600; }

/* Cookie Consent adjustments */
#cookie-consent-banner .container {
  max-width: 1140px;
}
