/* ============================================================
   GLOBAL RESET & TOKENS
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Logo brand colours */
.logo-one {
  color: #ffffff;
}

.logo-stop {
  color: var(--accent);
}

.logo-tcs {
  color: rgba(255, 255, 255, .75);
  font-weight: 400;
}

:root {
  --teal-dark: #006272;
  --teal: #007f8c;
  --teal-light: #009aad;
  --accent: #e8622a;
  --accent-dark: #c94f1a;
  --bg: #f8fafb;
  --surface: #ffffff;
  --text: #1a2535;
  --muted: #5a6a7a;
  --border: #e0e9ef;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, .12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);
  --radius: 14px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 98, 42, .35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(232, 98, 42, .45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .75);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-3px);
}

.full-width {
  width: 100%;
  text-align: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fbfbfc;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #fbfbfc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--teal-dark);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

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

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

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

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--teal-dark);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Nav website pill button */
.nav-website-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 18px rgba(232, 98, 42, .35);
  transition: var(--transition);
}

.nav-website-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(232, 98, 42, .45);
}

.nav-website-btn::after {
  display: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  background: url('img/2.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 62, 79, .82) 0%, rgba(0, 40, 55, .65) 60%, rgba(0, 0, 0, .4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem;
  animation: fadeUp .9s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 2.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll-dot 1.7s ease infinite;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--teal-dark);
  color: #fff;
  padding: 2.2rem 2rem;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: none;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: .85rem;
  opacity: .85;
  letter-spacing: .5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .2);
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section {
  padding: 5.5rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: rgba(0, 154, 173, .12);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .8rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.visible {
  opacity: 1;
  transform: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .7rem;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.service-link {
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
  transition: color var(--transition);
}

.service-link:hover {
  color: var(--accent);
}

/* CTA Full-Width Consultation Card */
.service-cta-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  border: none;
  color: #fff;
}

.service-cta-card::before {
  display: none;
}

.service-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 98, 114, .35);
}

.service-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.service-cta-text {
  flex: 1;
  min-width: 260px;
}

.service-cta-card .service-icon {
  font-size: 2.8rem;
  margin-bottom: .8rem;
}

.service-cta-card h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: .6rem;
}

.service-cta-card p {
  color: rgba(255, 255, 255, .88);
  margin-bottom: 0;
}

.service-cta-card strong {
  color: #fff;
  font-weight: 700;
}

.service-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(232, 98, 42, .45);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta-phone:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 98, 42, .55);
}

.cta-sub {
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
  margin-bottom: 0 !important;
  text-align: center;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.about-inner.visible {
  opacity: 1;
  transform: none;
}

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

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--teal-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about-badge-text {
  font-size: .8rem;
  opacity: .85;
}

.about-text .section-tag {
  display: inline-block;
  margin-bottom: .9rem;
}

.about-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: .97rem;
}

.about-text strong {
  color: var(--teal-dark);
}

.about-subheading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.8rem;
}

.about-list {
  list-style: none;
  margin: 1.4rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-size: .95rem;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}

.contact-card.visible {
  opacity: 1;
  transform: none;
}

.contact-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--teal-light);
}

.contact-icon {
  font-size: 1.6rem;
}

.contact-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .15rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-card p {
  color: var(--text);
  font-size: .95rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .5rem;
  color: var(--text);
}

.form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a7a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}

.form-group select:focus {
  outline: none;
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(0, 154, 173, .12);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-light);
  box-shadow: 0 0 0 3px rgba(0, 154, 173, .12);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, .8);
  padding-top: 5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Brand Col */
.footer-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 1.4rem;
  background-color: #fff;
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.footer-about {
  font-size: .95rem;
  line-height: 1.7;
  opacity: .8;
  margin-bottom: 1.8rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 50%;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 98, 42, .4);
}

/* Lists */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: .85rem;
}

.footer-col ul a {
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Contact Col */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255, 255, 255, .75);
  transition: var(--transition);
}

.footer-contact-item:not(div):hover {
  color: #fff;
}

.f-icon {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.8rem 0;
  font-size: .88rem;
  opacity: .7;
  text-align: center;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  80% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-img {
    height: 280px;
  }

  .about-badge {
    bottom: -.8rem;
    right: .8rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    padding: .5rem 1.8rem;
  }

  .stat-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand,
  .footer-about,
  .footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-socials {
    flex-direction: row;
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }
}