*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #2a9d9c;
  --teal-dark: #0f766e;
  --teal-light: #e6f7f7;
  --navy: #0d1f2d;
  --text: #1a2b3c;
  --muted: #5a6f80;
  --bg: #eef1f4;
  --white: #ffffff;
  --border: #d8e2e8;
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 99px;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 56px;
  transform: translateY(2px);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
  transform: translateY(2px) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0ea5a4;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0ea5a4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  opacity: 1;
}

/* Desktop: hamburger hidden */
.hamburger {
  display: none;
}

.apply-btn-mobile {
  display: none;
}

.apply-btn {
  background: rgba(14, 165, 164, 0.08);
  color: #0b9090;
  border: 1px solid rgba(14, 165, 164, 0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #0ea5a4;
  color: #ffffff;
  border-color: #0ea5a4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.nav-backdrop {
  display: none;
}

/* ═══════════════════════════════════════════
   NAVBAR MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo img {
    height: 48px;
  }

  /* ── Styled Solid Drawer ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-left: 4px solid #0ea5a4;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px;
    z-index: 3000;
    gap: 30px;
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    pointer-events: all;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  /* ── Refined Navigation Links ── */
  .nav-links a {
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    color: #0f172a;
    background: transparent !important;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    border-bottom: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #0ea5a4;
  }

  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
  }

  .nav-links a::after {
    display: none !important;
  }

  /* ── Styled Apply Button ── */
  .apply-btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
    transition: all 0.3s ease !important;
  }

  .apply-btn-mobile:active {
    transform: scale(0.97);
  }

  /* Instant appearance for links (animations removed as per user preference) */
  .nav-links.open a,
  .nav-links.open .apply-btn-mobile {
    opacity: 1;
    transform: none;
  }

  .nav-links.open a:nth-child(1) {
    animation-delay: 0.15s;
  }

  .nav-links.open a:nth-child(2) {
    animation-delay: 0.22s;
  }

  .nav-links.open a:nth-child(3) {
    animation-delay: 0.29s;
  }

  .nav-links.open a:nth-child(4) {
    animation-delay: 0.36s;
  }

  .nav-links.open a:nth-child(5) {
    animation-delay: 0.43s;
  }

  .nav-links.open .apply-btn-mobile {
    animation-delay: 0.55s;
  }

  @keyframes drawerItemReveal {
    to {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

  /* ── Hamburger Icon Refinement ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-7px);
  }

  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }

  .hamburger span:nth-child(3) {
    transform: translateY(7px);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background: #0ea5a4;
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0.2);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background: #0ea5a4;
  }

  /* ── UI Backdrop ── */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 2500;
  }

  .nav-backdrop.visible {
    display: block;
  }

  .apply-btn {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.tc-hero {
  position: relative;
  background: linear-gradient(135deg, #0d1f2d 0%, #0f3a4a 60%, #0ea5a4 100%);
  padding: 100px 60px 50px;
  overflow: hidden;
  animation: heroIn 0.8s ease both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tc-hero-bg span {
  position: absolute;
  border-radius: 50%;
  background: rgba(14, 165, 164, 0.12);
  animation: pulse 4s ease-in-out infinite;
}

.tc-hero-bg span:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  right: 10%;
}

.tc-hero-bg span:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 5%;
  animation-delay: 1s;
}

.tc-hero-bg span:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 30%;
  animation-delay: 2s;
}

.tc-hero-bg span:nth-child(4) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 0.5s;
}

.tc-hero-bg span:nth-child(5) {
  width: 50px;
  height: 50px;
  top: 30%;
  left: 20%;
  animation-delay: 1.5s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.tc-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.tc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.tc-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.tc-breadcrumb a:hover {
  color: #fff;
}

.tc-breadcrumb svg {
  width: 14px;
  height: 14px;
}

.tc-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.tc-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(14, 165, 164, 0.2);
  border: 1px solid rgba(14, 165, 164, 0.4);
  color: #5eead4;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tc-badge svg {
  width: 13px;
  height: 13px;
  stroke: #5eead4;
}

.tc-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.tc-date svg {
  width: 14px;
  height: 14px;
}

/* ═══════════════════════════════════════════
   QUICK NAV
═══════════════════════════════════════════ */
.tc-quicknav-wrap {
  background: linear-gradient(160deg, #f2f5fb 0%, #e8eef8 50%, #dde8f5 100%);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-quicknav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #ffffff;
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: 0 2px 12px rgba(180, 200, 230, 0.3), 0 6px 32px rgba(160, 185, 220, 0.18);
  flex-wrap: wrap;
}

.tc-qnav-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 500;
  color: #3d4f62;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.tc-qnav-btn:hover {
  background: #cfdaeb;
  color: #1e3048;
}

.tc-qnav-btn.active {
  background: #2a9d9c;
  color: #ffffff;
  font-weight: 600;
}

.tc-qnav-print {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #2a9d9c;
  background: transparent;
  border: 2px solid #2a9d9c;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-left: 10px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.tc-qnav-print svg {
  width: 16px;
  height: 16px;
}

.tc-qnav-print:hover {
  background: #2a9d9c;
  color: #fff;
}

/* ═══════════════════════════════════════════
   LAYOUT & CONTENT
═══════════════════════════════════════════ */
.tc-layout {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  min-height: 600px;
}

.tc-content {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.22, .68, 0, 1.2), transform 0.7s cubic-bezier(.22, .68, 0, 1.2);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.tc-sec {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tc-sec-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.04em;
  font-family: 'Outfit', monospace;
}

.tc-sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.tc-sec p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.75;
}

.tc-warning-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 0 10px 10px 0;
  padding: 22px 26px;
  margin-top: 8px;
}

.tc-warning-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 16px;
}

.tc-warning-header svg {
  width: 18px;
  height: 18px;
  stroke: #f59e0b;
  flex-shrink: 0;
}

.tc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.5;
}

.tc-list li svg {
  width: 16px;
  height: 16px;
  stroke: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.tc-info-box {
  background: var(--teal-light);
  border: 1px solid rgba(14, 165, 164, 0.25);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 18px 24px;
  margin-top: 8px;
}

.tc-info-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--teal-dark);
  line-height: 1.6;
  font-style: italic;
}

.tc-info-header svg {
  width: 17px;
  height: 17px;
  stroke: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.tc-cta {
  background: #0ea5a4;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.tc-cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.tc-cta-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.tc-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.tc-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 360px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.tc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #0ea5a4;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tc-cta-btn svg {
  width: 16px;
  height: 16px;
}

.tc-cta-btn:hover {
  background: #f0fafa;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.athenura-footer {
  background: #0ea5a4;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  padding-top: 60px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
  display: block;
}

.branding p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 230px;
}

.follow-us-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-links a:nth-child(1) {
  color: #0A66C2;
}

.social-links a:nth-child(2) {
  color: #E1306C;
}

.social-links a:nth-child(3) {
  color: #1DA1F2;
}

.social-links a:nth-child(4) {
  color: black;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: #d6f1f3;
  transform: translateX(4px);
  text-decoration: underline;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.white-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.white-circle svg {
  width: 15px;
  height: 15px;
  display: block;
}

.email-icon {
  color: #e11d48;
}

.phone-icon {
  color: #22c55e;
}

.info-text {
  line-height: 1.4;
}

.info-text span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.info-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.info-row:hover .white-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  display: block;
  margin-top: 4px;
}

.address {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.address::before {
  content: "📍";
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom-bar {
  padding: 0;
}

.bottom-content {
  max-width: 1400px;
  margin: auto;
  padding: 30px 60px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.bottom-content p a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}

.bottom-content p a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .tc-hero {
    padding: 32px 20px 28px;
  }

  .tc-quicknav-wrap {
    padding: 28px 20px;
  }

  .tc-quicknav {
    border-radius: 14px;
  }

  .tc-content {
    padding: 28px 20px;
    gap: 44px;
  }

  .tc-qnav-btn {
    padding: 9px 16px;
    font-size: 0.84rem;
  }
}

@media (max-width: 480px) {
  .tc-content {
    padding: 24px 16px;
    gap: 36px;
  }

  .tc-cta {
    padding: 36px 20px;
  }
}

@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .tc-quicknav-wrap {
    display: none !important;
  }

  .tc-hero {
    background: linear-gradient(135deg, #0d1f2d, #0ea5a4) !important;
    animation: none !important;
  }

  .tc-hero-bg {
    display: none !important;
  }

  .tc-content {
    padding: 32px 40px !important;
    gap: 36px !important;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    box-shadow: none !important;
  }
}

@media (max-width: 768px) {
  .tc-hero {
    padding: 100px 20px 40px;
  }
}


/* Responsive (exactly as original) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
    gap: 40px;
    padding: 0 40px 60px;
  }
}

@media (max-width: 1200px) {
  .bottom-content {
    padding: 18px 40px 44px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 24px 60px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 24px 40px;
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .branding {
    grid-column: span 2;
  }

  .branding p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 50px;
  }

  .bottom-content {
    padding: 14px 20px 36px;
  }

  .legal-links {
    gap: 16px;
  }

  .legal-links a {
    font-size: 13px;
  }
}