:root {
  --gold: #cc9c18;
  --dark-gold: #a57d0d;
  --gold-light: #dbb961;
  --dark: #0e0e0e;
  --dark2: #181818;
  --dark3: #232323;
  --mid: #2e2e2e;
  --light: #f5f0e8;
  --muted: #888;
  --white: #fff;
  --tfn: #b4870b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  /* background: var(--dark); */
  color: var(--light);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.top-bar a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}
.top-bar a:hover {
  text-decoration: underline;
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(10px);
  padding: 12px 15px;
  border-bottom: 1px solid #2a2a2a;
}
.nav-container {
  width: 100%;
  max-width: 1420px;
  padding: 0px 30px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.logo span {
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  margin-bottom: 0px;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-tfn {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-tfn img {
  height: 18px;
}
.nav-tfn a {
  color: var(--gold);
  text-decoration: none;
}
.nav-tfn a:hover {
  text-decoration: underline;
}

/* ── HERO ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 24px 50px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgb(66 48 0 / 87%), rgb(80 59 0 / 61%)),
    url(../images/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  /* background: radial-gradient(
    ellipse 80% 60% at 50% 20%,
    #2a1f06 0%,
    var(--dark) 70%
  ); */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}
.hero-badge {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  display: inline-block;
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  max-width: 720px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 24px;
  color: #fdfdfd;
  font-size: 1rem;
  max-width: 560px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  margin-top: 40px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--light);
  border: 1.5px solid #555;
  padding: 14px 34px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition:
    border-color 0.2s,
    color 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-tfn {
  margin-top: 10px;
  padding: 8px 25px;
  background: rgb(255 255 255);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-tfn .label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
}
.hero-tfn .number {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--dark-gold);
  letter-spacing: 0.06em;
}
.hero-tfn .number a {
  color: inherit;
  text-decoration: none;
}
.hero-tfn .number a:hover {
  color: #886506;
}
.hero-tfn .availability {
  font-size: 0.78rem;
  color: #777;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 0.85rem;
  font-weight: 400;
}
.trust-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
}
.trust-item strong {
  color: var(--light);
  font-weight: 600;
}

/* ── SECTION SHARED ── */
section {
  padding: 60px 24px;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 14px;
  max-width: 520px;
  margin: 0px auto;
}

/* ── SERVICES ── */
#services {
  background: var(--white);
  text-align: center;
}
.services-header {
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1160px;
  margin: 0 auto;
}
.service-card {
  background: var(--dark3);
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 25px 20px 20px;
  text-align: left;
  transition:
    border-color 0.3s,
    transform 0.25s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  color: #a5a5a5;
  font-size: 0.92rem;
  line-height: 1.75;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 10px;
}

/* ── WHY US ── */
#why {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dark3);
  border-radius: 16px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual-inner {
  font-size: 5rem;
  opacity: 0.18;
}
.why-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 8px;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.85rem;
}
.why-badge-float .big {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.stat-box {
  background: var(--dark2);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 22px 20px;
}
.stat-box .num {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-box .desc {
  font-size: 0.82rem;
  color: #888;
  margin-top: 4px;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #1a1200 0%, #2a1f06 40%, #1a1200 100%);
  border-top: 1px solid #3a2c0a;
  border-bottom: 1px solid #3a2c0a;
  padding: 50px 24px 0px;
  text-align: center;
}
.cta-band h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-band p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 36px;
}
.cta-tfn-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.1);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  border-radius: 10px;
  padding: 10px 35px;
  margin-bottom: 32px;
}
.cta-tfn-block .cta-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}
.cta-tfn-block .cta-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: 0.06em;
}
.cta-tfn-block .cta-num a {
  color: inherit;
  text-decoration: none;
}
.cta-tfn-block .cta-num a:hover {
  text-decoration: underline;
}
.cta-tfn-block .cta-hours {
  font-size: 0.8rem;
  color: #777;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--white);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 50px auto 0;
}
.tcard {
  background: var(--dark2);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 32px 28px;
  text-align: left;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.tcard p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.75;
}
.tcard .author {
  margin-top: 20px;
  font-weight: 600;
  color: var(--light);
  font-size: 0.88rem;
}
.tcard .role {
  font-size: 0.78rem;
  color: #666;
}

/* ── FOOTER ── */
footer {
  background: #fff;
  border-top: 5px solid #d39f11;
  padding: 40px 60px 25px;
}
.footer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.footer-brand {
  text-align: center;
}

.footer-brand .logo {
  font-size: 1.4rem;
}
.footer-brand p {
  color: #474747;
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 500px;
  text-align: center;
}
.footer-tfn-line {
  margin-top: 20px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.footer-tfn-line a {
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.footer-tfn-line img {
  height: 18px;
}
.footer-tfn-line a:hover {
  text-decoration: underline;
}
.footer-tfn-sub {
  font-size: 0.813rem;
  color: #474747;
  margin-top: 4px;
}
footer h4 {
  color: var(--light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer ul {
  list-style: none;
  margin: 0px;
  padding-left: 0px;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul a {
  color: #474747;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid #e9e9e9;
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}
.footer-bottom p {
  color: #474747;
  font-size: 0.813rem;
}

.content-section {
  width: 100%;
  padding: 40px 0px;
}

.content-section h2,
h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark3);
  margin-bottom: 15px;
}

.content-section ul {
  margin: 0px;
  padding: 0px;
  padding-left: 20px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.content-section ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark3);
  margin-bottom: 10px;
}

.support-tfn-card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 40px;
  border-radius: 30px;
  background-color: #2e1f00;
  border: 1px solid rgb(72 51 4);
}

.artimgbox img {
  max-width: 100%;
  height: 400px;
}

.whyus {
  padding-bottom: 40px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1320px) {
  .nav-container {
    padding: 0px 25px;
  }
}
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }
  #why {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px;
  }
  .why-visual {
    aspect-ratio: 16/9;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-container {
    padding: 0px 15px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  .trust-bar {
    gap: 10px;
    padding: 12px;
  }
  nav {
    padding: 10px 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 25px 24px 15px;
  }

  .content-section h2,
  h3 {
    font-size: 18px;
    line-height: 25px;
  }
  .artimgbox img {
    display: none;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .cta-band {
    padding: 35px 10px 35px;
  }
  .cta-tfn-block {
    padding: 10px 18px;
  }
  .cta-tfn-block .cta-num {
    font-size: 1.4rem;
  }
  .cta-band h2 {
    font-size: 1.5rem;
  }
  .top-bar {
    font-size: 0.75rem;
  }
  .top-bar a {
    font-size: 0.8rem;
  }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 32px;
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  .hero-tfn .number {
    font-size: 1.5rem;
  }
  .hero-tfn {
    padding: 6px 25px;
  }
  .logo {
    font-size: 1.5rem;
  }
  .services-grid {
    gap: 20px;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.813rem;
  }
}

@media (max-width: 359px) {
  .support-tfn-card {
    padding: 18px 15px;
  }
  .btn-primary {
    padding: 16px 20px !important;
    font-size: 0.9rem !important;
  }
  .hero-tfn .number {
    font-size: 1.3rem;
  }
  .cta-tfn-block .cta-num {
    font-size: 1.2rem;
  }
}
