/* Custom CSS for Target Environmental Services Landing Page */

/* ----------------------------------------------------
   FONTS & CUSTOM VARIABLES
------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors from original website (Corporate Blue & Red) */
  --primary-blue: #0c2b64;
  --primary-blue-hover: #164290;
  --primary-blue-dark: #071b3e;
  --secondary-blue: #3b66b5;
  --accent-red: #d11219;
  --accent-red-hover: #a60e14;
  --dark-text: #0d1726;
  --light-text: #55627a;
  --bg-light: #f4f7fc;
  --bg-light-blue: #e9effa;
  --bg-white: #ffffff;
  --border-color: #d1dae8;
  --shadow-sm: 0 4px 12px rgba(12, 43, 100, 0.04);
  --shadow-md: 0 10px 30px rgba(12, 43, 100, 0.08);
  --shadow-lg: 0 20px 40px rgba(12, 43, 100, 0.12);
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

/* ----------------------------------------------------
   RESET & BASE STYLES
------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-blue-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ----------------------------------------------------
   REUSABLE COMPONENTS
------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--primary-blue-hover);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.section-title span {
  color: var(--accent-red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(209, 18, 25, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  color: var(--primary-blue-dark);
}

.btn-outline {
  border: 2px solid var(--accent-red);
  color: var(--accent-red);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--accent-red);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Leaf Card Styling */
.leaf-card {
  border-radius: 40px 10px 40px 10px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.leaf-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

/* ----------------------------------------------------
   TOP BAR & NAVIGATION
------------------------------------------------------ */
.top-bar {
  background-color: var(--accent-red);
  color: var(--bg-white);
  padding: 10px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  gap: 24px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-socials {
  display: flex;
  gap: 16px;
}

.top-bar-socials a:hover {
  color: var(--primary-blue-dark);
}

header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

header.scrolled {
  padding: 8px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Stylized Bullseye Target Logo */
.logo-logo {
  width: 44px;
  height: 44px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--primary-blue);
  position: relative;
  flex-shrink: 0;
}

.logo-logo::after {
  content: '';
  width: 14px;
  height: 14px;
  background-color: var(--accent-red);
  border-radius: 50%;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

.logo-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-red);
  font-weight: 700;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  color: var(--primary-blue-dark);
  position: relative;
  font-size: 0.95rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.nav-phone i {
  color: var(--accent-red);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-blue-dark);
}

/* ----------------------------------------------------
   HERO SECTION
------------------------------------------------------ */
.hero {
  position: relative;
  background-color: var(--bg-light);
  overflow: hidden;
  padding: 100px 0 160px 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--bg-white);
  clip-path: ellipse(60% 80px at 50% 80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background-color: var(--bg-light-blue);
  color: var(--primary-blue-dark);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.hero-badge i {
  color: var(--accent-red);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent-red);
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--accent-red);
}

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

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: 480px;
  border-radius: 80px 20px 80px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--bg-white);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shape-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(12, 43, 100, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  top: -10%;
  left: -10%;
}

.hero-overlap-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  z-index: 2;
  background-color: var(--bg-white);
  padding: 16px 24px;
  border-radius: 20px 5px 20px 5px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 4s ease-in-out infinite;
}

.overlap-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.overlap-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.overlap-info p {
  font-size: 0.75rem;
  color: var(--light-text);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ----------------------------------------------------
   PROCESS SECTION (QUICK AND EASY)
------------------------------------------------------ */
.process {
  background-color: var(--bg-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -30%;
  width: 50%;
  height: 2px;
  border-top: 2px dashed var(--border-color);
  z-index: -1;
}

.process-step:last-child::after {
  display: none;
}

.process-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 30px 10px 30px 10px;
  background-color: var(--bg-light);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  position: relative;
  transition: var(--transition);
}

.process-icon-wrapper i {
  font-size: 2rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.process-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-red);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.process-step:hover .process-icon-wrapper {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.process-step:hover .process-icon-wrapper i {
  color: var(--bg-white);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--light-text);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ----------------------------------------------------
   ABOUT US SECTION
------------------------------------------------------ */
.about {
  background-color: var(--bg-light);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-image-side {
  position: relative;
}

.about-image-wrapper {
  width: 100%;
  height: 480px;
  border-radius: 20px 80px 20px 80px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--bg-white);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 24px;
  border-radius: 35px 10px 35px 10px;
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 140px;
  border: 2px solid var(--accent-red);
}

.about-experience-badge span.years {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-white);
}

.about-experience-badge span.text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 4px;
}

.about-content-side h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}

.about-highlight {
  font-size: 1.1rem;
  color: var(--primary-blue-hover);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-description {
  color: var(--light-text);
  margin-bottom: 28px;
}

.about-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.about-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-features-list li i {
  color: var(--accent-red);
  font-size: 1.1rem;
}

/* ----------------------------------------------------
   STATS & CAPABILITIES (BLUE BANNER)
------------------------------------------------------ */
.capabilities-banner {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  padding: 60px 0;
  position: relative;
  z-index: 2;
  border-radius: 40px 10px 40px 10px;
  margin-top: -40px;
  margin-bottom: -40px;
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--accent-red);
}

.capabilities-banner h2 {
  color: var(--bg-white);
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 40px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.capability-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px 5px 20px 5px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.capability-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: var(--accent-red);
}

.capability-card i {
  font-size: 2.25rem;
  color: var(--accent-red);
  margin-bottom: 16px;
  display: inline-block;
}

.capability-card h4 {
  font-size: 1.05rem;
  color: var(--bg-white);
  font-weight: 700;
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ----------------------------------------------------
   SERVICES SECTION
------------------------------------------------------ */
.services {
  background-color: var(--bg-white);
  padding-top: 140px; /* Offset the negative margin of banner */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-box {
  width: 65px;
  height: 65px;
  background-color: var(--bg-light);
  border-radius: 20px 5px 20px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link i {
  color: var(--accent-red);
  font-size: 0.8rem;
  transition: var(--transition);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION
------------------------------------------------------ */
.testimonials {
  background-color: var(--bg-light);
  overflow: hidden;
}

.testimonial-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.testimonial-track {
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--border-color);
  line-height: 1;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary-blue-dark);
  margin-bottom: 24px;
  max-width: 760px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.author-details {
  text-align: left;
}

.author-name {
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.author-title {
  font-size: 0.8rem;
  color: var(--light-text);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--primary-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-btn:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border-color: var(--primary-blue);
}

.slider-btn-prev {
  left: -10px;
}

.slider-btn-next {
  right: -10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--accent-red);
  width: 24px;
  border-radius: 5px;
}

/* ----------------------------------------------------
   GET A QUOTE SECTION (FORM)
------------------------------------------------------ */
.quote-section {
  background-color: var(--bg-white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.form-wrapper {
  padding: 50px;
  background-color: var(--bg-light);
  border-radius: 40px 10px 40px 10px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.form-wrapper p {
  color: var(--light-text);
  margin-bottom: 32px;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.form-input {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  color: var(--dark-text);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(12, 43, 100, 0.1);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.form-submit-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--light-text);
  line-height: 1.4;
}

.quote-info-side {
  position: relative;
}

.quote-image-wrapper {
  width: 100%;
  height: 480px;
  border-radius: 10px 40px 10px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--bg-light);
}

.quote-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-floating-satisfaction {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--bg-white);
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  max-width: 260px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 4px solid var(--accent-red);
}

.quote-floating-satisfaction i {
  color: var(--accent-red);
  font-size: 1.5rem;
}

.quote-floating-satisfaction div h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.quote-floating-satisfaction div p {
  font-size: 0.75rem;
  color: var(--light-text);
  line-height: 1.3;
}

/* ----------------------------------------------------
   FAQ SECTION
------------------------------------------------------ */
.faq {
  background-color: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.faq-info-card {
  background-color: var(--bg-light-blue);
  padding: 40px;
  border-radius: 30px 10px 30px 10px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.faq-info-card h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.faq-info-card p {
  color: var(--light-text);
  margin-bottom: 32px;
}

.faq-contact-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-white);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.faq-contact-box i {
  font-size: 1.5rem;
  color: var(--primary-blue);
  background-color: var(--bg-light-blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-contact-text h4 {
  font-size: 0.85rem;
  color: var(--light-text);
  font-weight: 500;
}

.faq-contact-text a {
  font-weight: 700;
  color: var(--primary-blue-dark);
  font-size: 1.1rem;
}

.faq-accordions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  transition: var(--transition);
}

.faq-item:hover .faq-question h4 {
  color: var(--primary-blue-hover);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px 24px;
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-inner {
  border-top-color: var(--bg-light);
}

/* ----------------------------------------------------
   BLOG/TIPS SECTION
------------------------------------------------------ */
.blog {
  background-color: var(--bg-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.blog-img-box {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.05);
}

.blog-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--bg-white);
  color: var(--accent-red);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--light-text);
  margin-bottom: 12px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--primary-blue-dark);
}

.blog-content h3 a:hover {
  color: var(--primary-blue);
}

.blog-content p {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link i {
  color: var(--accent-red);
  transition: var(--transition);
}

.blog-card:hover .blog-link i {
  transform: translateX(4px);
}

.blog-more-btn {
  text-align: center;
  margin-top: 50px;
}

/* ----------------------------------------------------
   FOOTER CALL TO ACTION (CTA BANNER)
------------------------------------------------------ */
.footer-cta {
  background-color: var(--bg-light-blue);
  border-radius: 40px 10px 40px 10px;
  padding: 60px;
  margin-bottom: -50px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--accent-red);
}

.footer-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-cta-text h2 {
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.footer-cta-text p {
  color: var(--light-text);
  font-size: 1.05rem;
}

.footer-cta-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary-blue-dark);
  font-size: 1.15rem;
}

.footer-cta-phone i {
  width: 44px;
  height: 44px;
  background-color: var(--accent-red);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ----------------------------------------------------
   FOOTER SECTION
------------------------------------------------------ */
footer {
  background-color: var(--primary-blue-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 120px 0 30px 0;
  font-size: 0.9rem;
  border-top: 6px solid var(--accent-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-red);
}

.footer-about .logo-logo {
  border-color: var(--bg-white);
  box-shadow: none;
}

.footer-about .logo-title {
  color: var(--bg-white);
}

.footer-about p {
  margin: 20px 0 24px 0;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--accent-red);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--accent-red);
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--accent-red);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-item p {
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--accent-red);
}

/* ----------------------------------------------------
   CLIENTS SECTION
------------------------------------------------------ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.client-logo-card {
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px 5px 20px 5px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
}

.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Tooltip styling */
.client-tooltip {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 10px);
  background-color: var(--primary-blue-dark);
  color: var(--bg-white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.client-tooltip::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: var(--primary-blue-dark);
}

.client-logo-card:hover .client-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ----------------------------------------------------
   GALLERY SECTION
------------------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: 30px 10px 30px 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  border: 4px solid var(--bg-white);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.gallery-img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-card:hover .gallery-img-box img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(7, 27, 62, 0.9) 0%, rgba(7, 27, 62, 0.4) 70%, rgba(7, 27, 62, 0) 100%);
  color: var(--bg-white);
  transform: translateY(100%);
  transition: var(--transition);
  opacity: 0;
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--bg-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .quote-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image-container, .quote-info-side {
    order: -1;
  }
  
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: -110%;
    width: 100vw;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 24px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    z-index: 999;
    margin-left: -24px; /* Offset container padding */
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero {
    padding: 60px 0 100px 0;
  }

  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }
  
  .hero-image-wrapper {
    height: 380px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .capabilities-banner {
    padding: 40px 20px;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Tooltip becomes inline text under logo on mobile */
  .client-logo-card {
    flex-direction: column;
    aspect-ratio: auto;
    padding: 16px;
    height: 140px;
  }

  .client-logo-card img {
    max-height: 60px;
    margin-bottom: 8px;
  }

  .client-tooltip {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    color: var(--primary-blue-dark);
    padding: 0;
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
    box-shadow: none;
  }

  .client-tooltip::after {
    display: none;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Gallery Overlay remains visible on touch screens */
  .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
    padding: 16px 12px;
    background: linear-gradient(to top, rgba(7, 27, 62, 0.95) 0%, rgba(7, 27, 62, 0.7) 100%);
  }

  .gallery-overlay h4 {
    font-size: 0.95rem;
  }

  .gallery-overlay p {
    font-size: 0.7rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .slider-btn {
    display: none; /* Hide arrow navigation buttons on touch screens */
  }

  .about-features-list {
    grid-template-columns: 1fr;
  }
  
  .services-grid, .blog-grid {
    grid-template-columns: 1fr;
  }

  .quote-form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-wrapper {
    padding: 30px 20px;
  }
  
  .quote-image-wrapper {
    height: 340px;
  }

  .quote-floating-satisfaction {
    right: 10px;
    bottom: 20px;
    max-width: calc(100% - 20px);
  }

  .faq-info-card {
    padding: 24px;
  }

  .footer-cta {
    padding: 30px 20px;
    margin-bottom: -70px;
  }
  
  .footer-cta-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .about-experience-badge {
    right: 10px;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
}
