/* =============================================
   ROOFING SERVICES NEW ORLEANS — Premium CSS
   Color Palette: Deep Navy + Vibrant Teal + Amber Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --teal: #2DD4BF;
  /* More vibrant emerald/teal */
  --teal-dark: #0D9488;
  --teal-light: #99F6E4;
  --amber: #F59E0B;
  --amber-light: #FDE68A;
  --amber-dark: #B45309;
  --navy: #050B15;
  /* Deeper black-navy */
  --navy-mid: #0C162A;
  --navy-light: #1A2B47;
  --accent-rose: #FB7185;
  --white: #F8FAFC;
  --off-white: #E2E8F0;
  --text-dark: #0F172A;
  --text-mid: #94A3B8;
  --text-light: #64748B;
  --border: rgba(45, 212, 191, 0.1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --nav-h: 90px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.15;
  pointer-events: none;
  z-index: 9999;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, var(--navy) 100%);
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 3px;
}

/* ===== UTILITY ===== */
.text-accent {
  color: var(--teal);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 194, 168, 0.15), rgba(0, 194, 168, 0.05));
  border: 1px solid rgba(0, 194, 168, 0.3);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.04em;
}

.section-desc {
  font-size: 1.2rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 40px;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 20px 40px rgba(45, 212, 191, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.15);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.85;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform 0.2s ease, background 0.2s ease;
  transform: translate(-50%, -50%);
  display: none;
}

@media (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.custom-cursor.cursor-hover {
  transform: translate(-50%, -50%) scale(4);
  background: var(--white);
  mix-blend-mode: difference;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 194, 168, 0.35);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 194, 168, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 60px;
  position: relative;
  overflow: visible;
}

/* Full-width dark background behind hero */
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(0, 194, 168, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
    var(--navy);
  z-index: -1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(0, 194, 168, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-content {
  z-index: 2;
  padding-top: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 194, 168, 0.1);
  border: 1px solid rgba(0, 194, 168, 0.25);
  color: var(--teal-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: slide-up 0.6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: slide-up 0.7s 0.1s ease both;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--teal), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: slide-up 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: slide-up 0.7s 0.3s ease both;
}

.btn-icon {
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  animation: slide-up 0.7s 0.4s ease both;
  max-width: fit-content;
}

.stat-item {
  text-align: center;
  padding: 0 28px;
  min-width: 100px;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}

.stat-plus {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--amber);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.hero-image-side {
  z-index: 2;
  display: flex;
  justify-content: center;
  animation: slide-left 0.8s 0.2s ease both;
}

.hero-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(0, 194, 168, 0.2);
  max-width: 100%;
}

.hero-img-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.6s ease;
}

.hero-img-card:hover img {
  transform: scale(1.03);
}

.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 194, 168, 0.3);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.badge-check {
  color: var(--teal);
  font-size: 1rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fade-in 1s 0.8s both;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(0, 194, 168, 0.5);
  border-bottom: 2px solid rgba(0, 194, 168, 0.5);
  transform: rotate(45deg);
  animation: bounce-down 1.5s ease infinite;
}

@keyframes bounce-down {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

/* ===== TRUST BAR TICKER ===== */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.trust-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.trust-item span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.2rem;
  opacity: 0.5;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 194, 168, 0.4);
  box-shadow: 0 20px 40px -10px rgba(0, 194, 168, 0.25);
}

.service-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.07);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 50%);
}

.img-fallback {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--teal-dark) 100%) !important;
}

.featured-card {
  border-color: rgba(0, 194, 168, 0.4);
  background: rgba(0, 194, 168, 0.06);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.service-content {
  padding: 28px;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.service-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* ===== WHY US ===== */
.why-us {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 194, 168, 0.04) 50%, transparent 100%);
}

.why-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 168, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-stack {
  position: relative;
}

.why-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(0, 194, 168, 0.15);
  object-fit: cover;
  height: 480px;
}

.why-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 160px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-md);
}

.why-experience-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.exp-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.exp-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(10, 22, 40, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.why-content-col .section-title {
  text-align: left;
}

.why-content-col .section-tag {
  margin-bottom: 12px;
}

.why-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-feature:hover {
  border-color: rgba(0, 194, 168, 0.25);
  background: rgba(0, 194, 168, 0.05);
  transform: translateX(4px);
}

.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.why-text h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--white);
}

.why-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 34, 64, 0.7) 50%, transparent 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  padding: 40px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--teal);
  transform: translateY(-8px);
}

.step-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--teal);
  margin-bottom: 24px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
}

.testimonials-slider {
  overflow: hidden;
  margin: 0 -12px;
  padding: 0 12px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0, 194, 168, 0.3);
  transform: translateY(-4px);
}

.stars {
  font-size: 1.1rem;
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--navy-light));
  border: 2px solid rgba(0, 194, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--teal-light);
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.reviewer-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy-light) 40%, var(--teal-dark) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -20%;
  width: 140%;
  height: 300%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.02) 60px,
      rgba(255, 255, 255, 0.02) 61px);
}

.cta-band-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-band h2 span {
  color: var(--amber);
}

.cta-band p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-band-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(0, 194, 168, 0.25);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--white);
  font-weight: 700;
  transition: color 0.2s;
}

.contact-info-card a:hover {
  color: var(--teal);
}

.info-note {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
}

/* ===== FORM ===== */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 194, 168, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  border: none;
  margin-bottom: 14px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== MAP ===== */
.map-section {
  filter: brightness(0.85) saturate(0.8);
  border-top: 2px solid rgba(0, 194, 168, 0.15);
  border-bottom: 2px solid rgba(0, 194, 168, 0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(0, 194, 168, 0.12);
  padding-top: 80px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col ul a:hover {
  color: var(--teal);
}

.footer-contact-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 22px;
  border-radius: 50px;
  transition: var(--transition);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 194, 168, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0, 194, 168, 0.45);
  transition: var(--transition);
  transform: translateY(100px);
  opacity: 0;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 194, 168, 0.6);
}

.floating-icon {
  font-size: 1.1rem;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy-mid);
  border: 1px solid var(--teal);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 80px;
  }

  .hero-image-side {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-img-secondary {
    display: none;
  }

  .why-experience-badge {
    top: 16px;
    left: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-track .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(0, 194, 168, 0.15);
  }

  .nav-links.open .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 12px;
  }

  .stat-item {
    padding: 8px 16px;
  }

  .stat-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-sep {
    display: none;
  }

  .trust-container {
    flex-direction: column;
    gap: 8px;
  }

  .testimonials-track .testimonial-card {
    min-width: 100%;
  }

  .why-img-main {
    height: 300px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 24px;
  }

  .floating-text {
    display: none;
  }

  .floating-cta {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .cta-band h2 {
    font-size: 1.8rem;
  }
}