:root {
  --deep-burgundy: #4A0707;
  --dark-maroon: #5A0000;
  --maroon: #680A0A;
  --rich-red: #8D1111;
  --crimson: #B51D1D;
  --gold: #D4AF37;
  --dark-gold: #C98509;
  --light-gold: #F0D77A;
  --cream: #FFF8F8;
  --white: #FFFFFF;
  --text: #2B1A12;
  --muted: #5F5F5F;
  --line: #E4E4E4;
  --shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
}

.narrow {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
}

.section-dark {
  background: var(--dark-maroon);
  color: var(--white);
  
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: #F5F5F5;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2,
.why-copy h2 {
  margin: 0 0 16px;
  color: #7A0B0B;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
  font-weight: 500;
}

.section-heading p,
.why-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.section-heading.light h2 {
  color: #FFD166;
}

.section-heading.light p {
  color: var(--white);
  font-weight: 500;
  max-width:900px;
  margin: 0 auto;
}

.btn,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 20px;
  border: 0;
  border-radius: 5px;
  background: #800000;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.lead-form button:hover,
.lead-form button:focus-visible {
  background: var(--dark-gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Header */
.topbar {
  background: var(--deep-burgundy);
  border-bottom: 1px solid #5F0909;
  color: var(--dark-gold);
}

.topbar-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #D4A62A;
  font-size: 10px;
  font-weight: 800;
}

.topbar-cta {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 4px;
  background: linear-gradient(180deg, #C92A2A 0%, #A31515 52%, #811010 100%);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 -2px 0 rgba(74, 7, 7, 0.55), 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-header {
  position: relative;
  z-index: 50;
  background: #470000;
  color: var(--white);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 94px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 17px;
  font-weight: 500;
}

.main-nav a {
  padding: 26px 7px;
  color: #FFF6F6;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--light-gold);
}

.nav-arrow::after {
  content: "\f107";
  margin-left: 7px;
  color: var(--dark-gold);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
}

.service-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 120;
  width: 295px;
  display: grid;
  padding: 10px;
  border: 1px solid rgba(240, 215, 122, 0.26);
  border-radius: 8px;
  background: #FFF8E8;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .service-dropdown,
.nav-item:focus-within .service-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.service-dropdown a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  color: #5A0000;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.service-dropdown a:hover,
.service-dropdown a:focus-visible,
.service-dropdown a.is-active {
  background: #6D0000;
  color: var(--light-gold);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 215, 122, 0.55);
  border-radius: 6px;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--light-gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 705px;
  overflow: visible;
  background: linear-gradient(135deg, #5A0707 0%, #9F1919 54%, #B51D1D 72%, #7B0C0C 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(65, 0, 0, 0.5) 0%, rgba(130, 16, 16, 0.05) 50%, rgba(74, 0, 0, 0.28) 100%),
    radial-gradient(circle at 58% 44%, rgba(255, 220, 190, 0.16), transparent 28%);
}

.hero-grid {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 455px;
  display: grid;
  grid-template-columns: minmax(500px, 52%) minmax(285px, 27%) minmax(250px, 21%);
  align-items: start;
  gap: 0;
}

.hero-copy {
  min-width: 0;
  padding: clamp(34px, 4vw, 52px) 0 0 clamp(24px, 3.2vw, 44px);
  z-index: 2;
}

.tamil-line {
  margin: 0 0 24px;
  color: var(--white);
  font-family: "Noto Sans Tamil", "Poppins", sans-serif;
  font-size: clamp(22px, 2.8vw, 26px);
  line-height: 1.18;
  font-weight: 800;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.35);
  text-align:center;
}

.hero h1 {
  width: fit-content;
  margin: 0 0 18px clamp(38px, 5vw, 94px);
  padding: 8px clamp(18px, 3vw, 36px);
  color: #F3D36D;
  border: 3px solid var(--light-gold);
  background: rgba(86, 0, 0, 0.36);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.7vw, 62px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.cash-title {
  margin: 0 0 28px clamp(74px, 11.5vw, 168px);
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1;
  font-weight: 900;
}

.hero-sub {
  margin: 0;
  font-size: clamp(24px, 2.90vw, 30px);
  line-height: 1.4;
}

.hero-sub strong {
  color: var(--light-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.hero-person {
  height: 565px;
  align-self: start;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
}

.hero-person img {
  width: auto;
  max-height: 730px;
  transform: translate(-45px, 22px);
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.34));
  position: relative;
  bottom: -60px;
}

.estimate-card {
  width: min(270px, calc(100% - 20px));
  min-height: 430px;
  align-self: start;
  margin: 47px 30px 0 auto;
  padding: 18px 19px 16px;
  border-radius: 8px;
  background: var(--white);
  color: #24130E;
  z-index: 4;
}

.estimate-card h2 {
  margin: 0 0 24px;
  color: #1D0D0D;
  text-align: center;
  font-size: 17px;
  line-height: 1.08;
  font-weight: 800;
}

.estimate-card h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--maroon);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.lead-form label span {
  display: block;
  margin-bottom: 3px;
  color: #4F4A47;
  font-size: 13px;
  line-height: 1.2;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 35px;
  border: 2px solid #DDDDDD;
  border-radius: 10px;
  padding: 0 10px;
  color: var(--text);
  background: var(--white);
  outline: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--dark-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.lead-form button {
  width: 154px;
  min-height: 31px;
  margin: 3px 0 0;
  border-radius: 7px;
  background: #075EC2;
  font-size: 11px;
}

.phone-strip {
  position: relative;
  z-index: 2;
  width: min(845px, 64%);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  margin-top: -310px;
  padding: 0 18px;
  background: #F7C600;
  color: #050000;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 130px;
}

.phone-icon {
  flex: 0 0 auto;
  font-size: 0;
}

.phone-icon::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
}

.phone-strip strong {
  white-space: nowrap;
}

/* Promise */
.promise-band {
  position: relative;
  z-index: 7;
  padding: 22px 10px 32px;

  top: 0;
}

.promise-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 32.15% 18.3% 24.8% 18.3%;
  align-items: end;
  gap: 21px;
  position:absolute;
  bottom: -270px;
  
}

.intro-card,
.service-badge {
  background: var(--dark-maroon);
  color: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.intro-card {
  min-height: 430px;
  padding: 34px 42px 30px;
  text-align: center;
  max-width: 380px;
}

.intro-card h2 {
  max-width: 330px;
  margin: 0 auto;
  color: #F0C85E;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}

.title-line {
  display: block;
  width: 132px;
  height: 1px;
  margin: 23px auto 25px;
  background: rgba(255, 255, 255, 0.56);
  position: relative;
}

.title-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
}

.intro-card p {
  margin: 0 0 40px;
  color: var(--white);
  text-align: left;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.intro-card .btn-outline {
  min-width: 256px;
  min-height: 46px;
  font-size: 14px;
}

.service-badge {
  min-height: 342px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 50px 18px 36px;
  text-align: center;
}

.service-badge img {
  width: 137px;
  margin: 0 auto;
}

.service-badge p {
  max-width: 250px;
  margin: 0 auto;
  color: var(--white);
  font-size: 17px;
  line-height: 1.38;
  font-weight: 500;
}

/* About */
.why {
  padding: 300px 0 50px 0;
}

.split-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}

.big-promise {
  min-height: 610px;
  display: grid;
  place-items: center;
  background: #4A0000;
  border-radius: 15px;
}

.big-promise img {
  width: min(355px, 82%);
}

.why-copy {
  padding: 28px 48px 34px 30px;
  background: var(--white);
}

.why-copy .eyebrow {
  display: none;
}

.why-copy h2 {
  max-width: 560px;
  color: #6C3737;
  font-size: 25px;
}

.why-copy > p {
  max-width: 560px;
  color: #626262;
  text-align: justify;
}

.icon-list {
  display: grid;
  gap: 20px;
  margin: 28px 0 22px;
}

.icon-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.icon-list span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid var(--maroon);
  border-radius: 50%;
  color: var(--maroon);
  background: var(--white);
  font-size: 20px;
  font-weight: 900;
}
.icon-list span:hover{
  background: var(--maroon);
  color: var(--white);
}

.icon-list p {
  color: #606060;
  font-size: 13px;
  line-height: 1.38;
}

.icon-list p strong {
  display: block;
  margin-bottom: 5px;
  color: #260909;
  font-size: 15px;
}

.why-copy .btn {
  min-height: 34px;
  padding: 0 24px;
  border-radius: 3px;
  background: #8D1B10;
  font-size: 12px;
}

/* Services */
.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 209, 102, 0.16), transparent 28%),
    radial-gradient(circle at 82% 32%, rgba(181, 29, 29, 0.32), transparent 34%),
    linear-gradient(135deg, #3B0000 0%, #650707 48%, #4A0000 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 209, 102, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 209, 102, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
}

.services::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 152px;
  z-index: -1;
  width: min(860px, 78vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.7), transparent);
  transform: translateX(-50%);
  opacity: 0.75;
}

.services .section-heading {
  max-width: 980px;
  margin-bottom: 48px;
  animation: serviceFadeUp 0.7s ease both;
}

.services .section-heading h2 {
  color: #FFD166;
  font-size: clamp(28px, 3.9vw, 38px);
  font-weight: 500;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
}

.services .section-heading p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.72;
}

.service-grid {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 30px;
  align-items: stretch;
}

.service-grid::before {
  content: "";
  position: absolute;
  inset: 48px 50% 48px auto;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 209, 102, 0.58), transparent);
  transform: translateX(50%);
  pointer-events: none;
}

.service-card {
  min-width: 0;
  position: relative;
  z-index: 1;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 14px 14px 18px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 242, 0.98), rgba(255, 244, 219, 0.98)),
    #FFF6E8;
  color: var(--text);
  text-align: left;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transform: translateY(18px);
  opacity: 0;
  animation: serviceFadeUp 0.72s ease both;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:nth-child(2) {
  animation-delay: 0.12s;
}

.service-card:nth-child(3) {
  animation-delay: 0.24s;
}

.service-card:nth-child(4) {
  animation-delay: 0.36s;
}

.service-card-feature {
  grid-column: auto;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: auto;
}

.service-card:nth-child(4) {
  grid-column: auto;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  margin-top: 38px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.54) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 66%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 209, 102, 0.72);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.36);
}

.service-card:hover::before {
  transform: translateX(120%);
}

.service-step {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.42);
}

.service-art {
  position: relative;
  height: 230px;
  min-height: 210px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #FFF9EA, #F4DF9C),
    var(--light-gold);
  padding: 10px;
}

.service-card-feature .service-art {
  height: 230px;
}

.service-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 0, 0, 0), rgba(42, 0, 0, 0.12)),
    linear-gradient(90deg, rgba(255, 209, 102, 0.16), transparent 48%);
  pointer-events: none;
}

.service-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.service-card:hover .service-art img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.star {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: -21px 0 12px 16px;
  border: 3px solid #FFF6E8;
  border-radius: 50%;
  background: linear-gradient(135deg, #8D1111, #C98509);
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 9px 18px rgba(74, 0, 0, 0.22);
  animation: serviceIconFloat 3.6s ease-in-out infinite;
}

.service-card small {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(141, 17, 17, 0.08);
  color: #8D1111;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--maroon);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.18;
  font-weight: 800;
}

.service-card p {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.58;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.service-tags span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.18);
  color: #5A0000;
  font-size: 11px;
  font-weight: 800;
}

.service-card a {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--crimson), #7A0B0B);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease;
}

.service-card a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
}

.service-card a:hover,
.service-card a:focus-visible {
  background: linear-gradient(135deg, #C98509, #8D1111);
  transform: translateX(3px);
}

@keyframes serviceFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Advantage */
.advantage {
  padding: 52px 0 58px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
  justify-items: center;
}

.advantage-grid article {
  position: relative;
  width: 100%;
  max-width: 340px;
  min-height: 162px;
  padding: 28px 20px 16px;
  border: 1px solid #D8D2CA;
  background: var(--white);
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.13);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.advantage-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.advantage-grid span {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  transform: translateX(-50%);
}

.advantage-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.advantage-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.advantage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 22px;
}

.advantage-grid article {
  position: relative;
  width: calc(33.333% - 22px); /* 3 per row, accounting for gap */
  max-width: 340px;
  min-height: 162px;
  padding: 28px 20px 16px;
  border: 1px solid #D8D2CA;
  background: var(--white);
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.13);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.advantage-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

/* Proof */
.proof {
  padding: 34px 0 48px;
  overflow: hidden;
  background: #4A0000;
}

.proof .section-heading {
  max-width: none;
  margin-bottom: 34px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof .section-heading h2 {
  color: #FFD166;
  font-size: 30px;
 
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.proof-offer {
  position: relative;
  min-height: 320px;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #6B0000;
  text-align: center;
}

.proof-hand-combo {
  position: absolute;
  left: 50%;
  bottom: -4px;
  z-index: 1;
  width: min(620px, 116%);
  max-width: none;
  height: auto;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.proof-offer > div {
  position: relative;
  z-index: 2;
  width: min(310px, 58%);
}

.proof-offer h3 {
  margin: 0 0 7px;
  color: #FFD166;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.proof-offer p {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.proof-offer p::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 13px auto 0;
  background: #B08E2A;
}

.proof-offer strong {
  display: block;
  max-width: 310px;
  margin: 0 auto 28px;
  color: var(--white);
  font-size: 15.5px;
  line-height: 1.42;
  font-weight: 800;
}

.proof-offer a {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  background: #ffb443;
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-tile {
  position: relative;
  height: 152px;
  overflow: hidden;
  background: #1B0808;
}

.proof-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.proof-tile::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 35px;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08) center / 34px no-repeat;
  transform: translate(-50%, 8px) scale(0.92);
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.proof-happy::before,
.proof-area::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.6 2.8 3.8 5.8 3.8 9S14.6 18.2 12 21M12 3c-2.6 2.8-3.8 5.8-3.8 9s1.2 6.2 3.8 9'/%3E%3C/svg%3E");
}

.proof-door::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3Cpath d='M4 21c.6-5.2 4-8 8-8s7.4 2.8 8 8H4z'/%3E%3Crect x='16' y='12' width='5' height='8' rx='1'/%3E%3C/svg%3E");
}

.proof-quality::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cellipse cx='12' cy='12' rx='9' ry='3.8'/%3E%3Cellipse cx='12' cy='12' rx='9' ry='3.8' transform='rotate(60 12 12)'/%3E%3Cellipse cx='12' cy='12' rx='9' ry='3.8' transform='rotate(120 12 12)'/%3E%3C/svg%3E");
}

.proof-tile span {
  position: absolute;
  inset: 88px 10px auto;
  z-index: 2;
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.75);
}

.proof-tile:hover img {
  opacity: 0.42;
  transform: scale(1.035);
}

/* Blogs */
.blogs {
  padding: 46px 0;
}

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

.blog-grid article {
  min-width: 0;
}

.blog-grid img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.blog-grid h3 {
  margin: 14px 0 0;
  color: #464646;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.blogs .btn,
.reviews .btn {
  min-height: 36px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

/* Reviews */
.reviews {
  padding: 58px 0 44px;
  background: #F4F4F4;
}

.reviews .container {
  width: min(1888px, calc(100% - 32px));
  max-width: none;
}

.reviews .section-heading {
  max-width: 1240px;
  margin-bottom: 70px;
}

.reviews .section-heading h2 {
  margin-bottom: 20px;
  color: #A03A3A;
  font-size: clamp(34px, 2.65vw, 46px);
  line-height: 1.1;
  font-weight: 500;
}

.reviews .section-heading p {
  color: #252525;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.45;
}

.review-grid {
  display: none;
}

.review-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 445px repeat(3, minmax(0, 438px));
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.review-summary {
  min-width: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
}

.review-mark {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  background: #DDDDDD;
}

.review-summary strong {
  color: #000000;
  font-size: 18px;
  line-height: 1.26;
  font-weight: 500;
  max-width: 280px;
}

.review-summary .review-stars,
.review-summary p,
.review-summary a {
  grid-column: 2;
}

.review-stars {
  color: #F5B400;
  font-size: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

.review-stars::before {
  content: "\2605\2605\2605\2605\2605";
  font-size: 20px;
}

.review-summary .review-stars {
  margin-top: 13px;
}

.review-summary p {
  margin: 9px 0 18px;
  color: #000000;
  font-size: 18px;
  line-height: 1.25;
}

.review-summary a {
  width: 210px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #777777;
  border-radius: 5px;
  background: var(--white);
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

.google-card {
  min-height: 216px;
  
  padding: 28px 10px 20px;
  border: 1px solid #E6E6E6;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.review-showcase .google-card:nth-of-type(n+4) {
  display: none;
}

.google-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.17);
}

.review-card-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
}

.avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #F15A24;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.avatar.purple {
  background: #7B1FA2;
}

.review-photo {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 215, 90, 0.22), transparent 42%),
    url("img/customer.jpeg") center / cover no-repeat;
}

.review-photo.jewel {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 215, 90, 0.22), transparent 42%),
    url("img/png/p3.png") center / cover no-repeat;
}

.review-card-head strong {
  display: block;
  color: #000000;
  font-size: 18px;
  line-height: 1.16;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card-head small {
  display: block;
  margin-top: 2px;
  color: #8C8C8C;
  font-size: 12px;
  line-height: 1.15;
}

.google-g {
  background: conic-gradient(from -45deg, #4285F4 0 25%, #34A853 0 50%, #FBBC05 0 75%, #EA4335 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.google-card .review-stars {
  margin-top: 18px;
}

.google-card .review-stars::before {
  font-size: 24px;
}

.verify-dot {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4285F4;
  color: var(--white);
  font-size: 11px;
  vertical-align: 4px;
}

.google-card p {
  margin: 18px 0 0;
  color: #111111;
  font-size: 15px;
  line-height: 1.28;
}

.review-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  background: var(--white);
  color: #777777;
  font-size: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.review-arrow:hover {
  background: #800000;
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.review-arrow::before {
  font-size: 38px;
  line-height: 1;
}

.review-prev {
  left: 468px;
}

.review-prev::before {
  content: "\2039";
}

.review-next {
  right: -20px;
}

.review-next::before {
  content: "\203A";
}

.reviews .center {
  margin-top: 64px;
}

.reviews .center .btn {
  min-width: 385px;
  min-height: 54px;
  border-radius: 4px;
  padding: 0 34px;
  font-size: 17px;
  font-weight: 500;
}

.review-showcase.is-sliding-next .google-card {
  animation: reviewSlideNext 0.48s ease both;
}

.review-showcase.is-sliding-prev .google-card {
  animation: reviewSlidePrev 0.48s ease both;
}

@keyframes reviewSlideNext {
  0% { opacity: 1; transform: translateX(0); }
  44% { opacity: 0; transform: translateX(-24px); }
  45% { opacity: 0; transform: translateX(28px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes reviewSlidePrev {
  0% { opacity: 1; transform: translateX(0); }
  44% { opacity: 0; transform: translateX(24px); }
  45% { opacity: 0; transform: translateX(-28px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* FAQ and contact */
.faq {
  padding: 58px 0 64px;
  background: var(--cream);
}

.faq .section-heading {
  margin-bottom: 28px;
}
.faq .section-heading h2 {
  color: #802727;
  font-size: 25px;
}

.faq-list {
  border: 1px solid #DDDDDD;
  background: var(--white);
}

.faq-item {
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  text-align: left;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item span {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 22px 0 52px;
  color: #1D0909;
  font-size: 16px;
  font-weight: 800;
}

.faq-item span::before {
  content: "?";
  position: absolute;
  left: 23px;
  top: 19px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid #3A1010;
  border-radius: 50%;
  color: #3A1010;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.faq-item[aria-expanded="true"] span::before {
  content: "\2039";
  top: 14px;
  left: 20px;
  border: 0;
  font-size: 27px;
  transform: rotate(90deg);
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  border-top: 1px solid #E3E3E3;
  color: #535353;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.38s ease, padding 0.38s ease, opacity 0.26s ease, transform 0.26s ease;
}

.faq-item[aria-expanded="true"] p {
  max-height: 180px;
  padding-top: 21px;
  padding-bottom: 21px;
  opacity: 1;
  transform: translateY(0);
}

.contact {
  padding: 58px 0 72px;
  background: var(--white);
}

.contact .section-heading h2 {
  color: #555555;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1110px, 100%);
  margin: 0 auto;
}

.contact-grid article {
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 16px 12px 14px;
  border: 1px solid #D5D5D5;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
}

.contact-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1.5px solid #6B4A4A;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}

.contact-grid span::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact-grid article:nth-child(1) span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B4A4A' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s7-6.1 7-13A7 7 0 0 0 5 9c0 6.9 7 13 7 13Z'/%3E%3Ccircle cx='12' cy='9' r='2.5'/%3E%3C/svg%3E");
}

.contact-grid article:nth-child(2) span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B4A4A' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='1'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3Cpath d='m7 9-4 8M17 9l4 8'/%3E%3C/svg%3E");
}

.contact-grid article:nth-child(3) span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B4A4A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v2.8a2 2 0 0 1-2.2 2 19.7 19.7 0 0 1-8.6-3.1 19.3 19.3 0 0 1-6-6A19.7 19.7 0 0 1 2.1 4 2 2 0 0 1 4.1 2h2.8a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8 9.7a16 16 0 0 0 6 6l1.1-1.1a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 2 2.1Z'/%3E%3C/svg%3E");
}

.contact-grid h3 {
  margin: 0 0 3px;
  color: #351010;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.contact-grid p {
  margin: 0;
  color: #626262;
  font-size: 15px;
  line-height: 1.35;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 66px 0 0;
  background: #330000;
  color: var(--white);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: #C87500;
  border-bottom: 1px solid #E1AE45;
}

.footer-grid {
  width: min(1480px, calc(100% - 24px));
  max-width: none;
  display: grid;
  grid-template-columns: minmax(350px, 1.08fr) minmax(360px, 1fr) minmax(340px, 0.94fr);
  gap: clamp(32px, 4vw, 66px);
  align-items: start;
}

.footer-logo {
  width: 104px;
  margin: 0 0 20px;
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--dark-gold);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-grid p,
.footer-grid address,
.footer-grid a {
  display: block;
  margin: 0;
  color: #D8C8C8;
  font-size: 13px;
  line-height: 1.48;
  font-style: normal;
  font-weight: 600;
}

.footer-about p,
.footer-about address,
.footer-about a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 7px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-ic {
  flex: 0 0 26px;
  width: 26px;
  display: inline-grid;
  place-items: center;
  color: var(--dark-gold);
  font-size: 19px;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.footer-link-columns a {
  position: relative;
  margin: 0 0 15px;
  padding-left: 22px;
  color: #D8C8C8;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-link-columns a:hover,
.footer-link-columns a:focus-visible {
  color: var(--light-gold);
  transform: translateX(4px);
}

.footer-link-columns a::before {
  content: "\203A";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 21px;
  display: grid;
  place-items: center;
  background: var(--dark-gold);
  color: #1CB6D6;
  font-size: 23px;
  line-height: 1;
}

.footer-note {
  position: relative;
  min-width: 0;
}

.footer-note::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 20px;
  width: 250px;
  height: 190px;
  background: url("img/png/handhap.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.footer-note p {
  position: relative;
  z-index: 2;
  max-width: 425px;
  margin-bottom: 18px;
  color: #D8C8C8;
  font-size: 13px;
  line-height: 1.72;
  font-weight: 600;
}

.btn-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 390px;
  min-height: 36px;
  border: 1px solid var(--dark-gold);
  border-radius: 6px;
  background: transparent;
  color: var(--dark-gold);
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
}

.btn-footer:hover {
  background: rgba(201, 133, 9, 0.14);
  border-color: var(--light-gold);
  color: var(--light-gold);
}

.social-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 220px;
  margin: 18px auto 0;
}

.social-row span {
  display: none;
}

.social-btn {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  font-size: 27px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, background 0.24s ease;
}

.social-row a i {
  width: 1em;
  height: 1em;
  display: grid;
  place-items: center;
  font-size: 27px;
  line-height: 1;
  text-align: center;
}

.facebook i {
  font-size: 25px;
}

.instagram i {
  font-size: 28px;
}

.youtube i {
  font-size: 27px;
}

.facebook {
  background: #486DB8;
  text-align: center;
}

.instagram {
  background: linear-gradient(135deg, #FF7A00, #F01857 55%, #7B2DFF);
  text-align: center;
}

.youtube {
  background: #DD2020;
  text-align: center;
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
}

.facebook:hover,
.facebook:focus-visible {
  background: #315FB5;
}

.instagram:hover,
.instagram:focus-visible {
  background: linear-gradient(135deg, #FF9A1F, #F01857 50%, #6F32FF);
}

.youtube:hover,
.youtube:focus-visible {
  background: #F01818;
}

.copyright {
  margin-top: 44px;
  padding: 4px 8px;
  background: #6D0000;
  color: var(--white);
  text-align: left;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* Floating actions */
.float-call,
.float-chat {
  position: fixed;
  right: 18px;
  z-index: 60;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.float-call {
  bottom: 86px;
  background: #111111;
}

.float-chat {
  bottom: 24px;
  background: #2957FF;
}

.float-call::before,
.float-chat::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
}

.float-call::before {
  content: "\f095";
}

.float-chat::before {
  content: "\f075";
}

/* Tablet */
@media (max-width: 1180px) {
  .container,
  .narrow,
  .footer-grid {
    width: min(960px, calc(100% - 32px));
  }

  .topbar-inner {
    min-height: auto;
    padding: 9px 0;
  }

  .topbar-contact {
    gap: 8px 18px;
    font-size: 13px;
  }

  .nav-shell {
    min-height: 82px;
  }

  .main-nav {
    gap: 24px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
  }

  .hero-grid {
    width: min(960px, calc(100% - 32px));
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.62fr);
    gap: 18px;
    padding: 34px 0 42px;
  }

  .hero-copy {
    padding: 10px 0 0;
  }

  .tamil-line {
    margin-bottom: 20px;
    font-size: clamp(24px, 3.5vw, 30px);
  }

  .hero h1 {
    margin-left: 0;
    margin-bottom: 18px;
    font-size: clamp(38px, 5vw, 54px);
  }

  .cash-title {
    margin-left: 42px;
    margin-bottom: 22px;
    font-size: clamp(28px, 4vw, 38px);
  }

  .hero-sub {
    font-size: clamp(24px, 3.7vw, 36px);
  }

  .hero-person {
    height: auto;
    align-self: end;
  }

  .hero-person img {
    width: min(100%, 360px);
    max-height: none;
    transform: translateY(42px);
  }

  .estimate-card {
    grid-column: 1 / -1;
    width: min(100%, 640px);
    min-height: auto;
    margin: 0 auto;
    box-shadow: var(--shadow);
  }

  .phone-strip {
    width: 100%;
    min-height: 74px;
    margin-top: 0;
    justify-content: center;
    font-size: clamp(40px, 7vw, 60px);
  }

  .phone-icon::before {
    font-size: clamp(40px, 7vw, 58px);
  }

  .promise-grid,
  .service-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-grid {
    position: static;
    bottom: auto;
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
    align-items: stretch;
  }

  .promise-band {
    padding: 28px 0 38px;
  }

  .intro-card,
  .service-badge {
    min-height: auto;
    max-width: none;
  }

  .split-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .why {
    padding: 52px 0;
  }

  .big-promise {
    min-height: 430px;
  }

  .why-copy {
    padding: 42px 32px 50px;
  }

  .service-card p {
    min-height: auto;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-grid article,
  .advantage-grid article:nth-child(4),
  .advantage-grid article:nth-child(5) {
    max-width: none;
    grid-column: auto;
    justify-self: stretch;
  }

  .proof-offer {
    min-height: 340px;
  }

  .proof-hand-combo {
    width: min(760px, 112vw);
    bottom: -12px;
  }

  .reviews .container {
    width: min(960px, calc(100% - 32px));
  }

  .reviews .section-heading {
    margin-bottom: 42px;
  }

  .review-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .review-summary {
    grid-template-columns: 74px minmax(0, 1fr);
    max-width: none;
  }

  .review-mark {
    width: 74px;
    height: 74px;
  }

  .review-summary strong {
    font-size: 16px;
  }

  .review-summary p {
    font-size: 14px;
  }

  .review-summary a {
    width: 138px;
    min-height: 34px;
    font-size: 13px;
  }

  .google-card {
    min-height: 220px;
  }

  .review-arrow {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-note::after {
    right: 0;
  }
}

/* Mobile nav and small tablet */
@media (max-width: 860px) {
  .nav-shell {
    min-height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 80;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #470000;
    border-top: 1px solid rgba(240, 215, 122, 0.25);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 22px;
    border-bottom: 1px solid rgba(240, 215, 122, 0.16);
  }

  .nav-item {
    display: block;
  }

  .nav-item > a {
    width: 100%;
  }

  .service-dropdown {
    position: static;
    width: 100%;
    display: none;
    padding: 0 18px 12px;
    border: 0;
    border-radius: 0;
    background: #3F0000;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item:hover .service-dropdown,
  .nav-item:focus-within .service-dropdown {
    display: grid;
    transform: none;
  }

  .service-dropdown a {
    color: #FFF6F6;
    padding: 10px 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1,
  .cash-title {
    margin-inline: auto;
  }

  .hero-person img {
    width: min(72vw, 340px);
    transform: none;
  }

  .estimate-card {
    width: min(100%, 520px);
  }

  .promise-grid,
  .service-grid,
  .advantage-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .service-badge {
    width: 100%;
  }

  .big-promise {
    min-height: 340px;
  }

  .contact-grid,
  .review-showcase {
    grid-template-columns: 1fr;
  }

  .review-summary {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .review-mark {
    width: 64px;
    height: 64px;
  }

  .google-card {
    min-height: auto;
  }

  .faq,
  .contact,
  .advantage,
  .blogs,
  .reviews {
    padding: 54px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-about {
    grid-column: auto;
  }
}

/* Phone */
@media (max-width: 640px) {
  .container,
  .narrow,
  .footer-grid,
  .hero-grid {
    width: min(520px, calc(100% - 22px));
  }

  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .topbar-contact a {
    overflow-wrap: anywhere;
  }

  .topbar-cta {
    width: 100%;
    margin-top: 8px;
  }

  .brand {
    width: 96px;
  }

  .hero-grid {
    padding: 26px 0 30px;
  }

  .hero {
    min-height: auto;
  }

  .tamil-line {
    margin-bottom: 14px;
    font-size: clamp(18px, 6vw, 24px);
  }

  .hero h1 {
    padding: 8px 14px;
    font-size: clamp(31px, 10vw, 40px);
  }

  .cash-title {
    margin-bottom: 18px;
    font-size: clamp(23px, 8vw, 30px);
  }

  .hero-sub {
    font-size: clamp(20px, 7vw, 26px);
  }

  .estimate-card {
    padding: 20px 16px;
  }

  .estimate-card h2 {
    font-size: 16px;
  }

  .lead-form button {
    width: 100%;
  }

  .phone-strip {
    min-height: 58px;
    gap: 10px;
    padding: 0 12px;
    font-size: clamp(25px, 9vw, 36px);
  }

  .phone-strip strong {
    white-space: normal;
  }

  .phone-icon::before {
    font-size: clamp(28px, 9vw, 38px);
  }

  .promise-grid,
  .service-grid,
  .advantage-grid,
  .blog-grid,
  .proof-gallery,
  .footer-link-columns {
    grid-template-columns: 1fr;
  }

  .intro-card,
  .service-badge {
    border-radius: 10px;
    padding: 24px 20px;
  }

  .promise-band {
    padding: 24px 0 36px;
  }

  .promise-grid {
    gap: 18px;
  }

  .intro-card {
    text-align: center;
  }

  .intro-card p {
    text-align: left;
  }

  .intro-card h2,
  .section-heading h2,
  .why-copy h2,
  .services .section-heading h2,
  .proof .section-heading h2,
  .reviews .section-heading h2,
  .faq .section-heading h2,
  .contact .section-heading h2 {
    font-size: clamp(24px, 8vw, 31px);
  }

  .intro-card p,
  .service-card p {
    font-size: 14px;
  }

  .intro-card .btn-outline,
  .why-copy .btn,
  .blogs .btn,
  .reviews .btn {
    width: 100%;
    min-width: 0;
  }

  .service-badge img {
    width: 112px;
  }

  .big-promise {
    min-height: 300px;
  }

  .big-promise img {
    width: min(80%, 300px);
  }

  .why-copy {
    padding: 34px 18px 42px;
  }

  .icon-list div {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .icon-list span {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .service-art {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .proof {
    padding: 44px 0 54px;
  }

  .proof .section-heading {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .proof-offer {
    min-height: 390px;
    padding: 26px 16px;
  }

  .proof-hand-combo {
    bottom: 0;
    width: min(620px, 150vw);
  }

  .proof-offer > div {
    width: min(100%, 310px);
  }

  .blog-grid img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .reviews .section-heading h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .reviews .center {
    margin-top: 32px;
  }

  .reviews .center .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

  .review-summary {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
  }

  .review-mark {
    width: 58px;
    height: 58px;
  }

  .review-summary strong {
    font-size: 14px;
  }

  .review-summary p {
    font-size: 13px;
  }

  .review-summary a {
    width: 130px;
    min-height: 34px;
    font-size: 12px;
  }

  .google-card {
    padding: 18px;
  }

  .review-card-head {
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    gap: 12px;
  }

  .avatar {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .review-card-head strong {
    font-size: 15px;
  }

  .review-card-head small {
    font-size: 13px;
  }

  .google-g {
    font-size: 24px;
  }

  .google-card p {
    font-size: 14px;
  }

  .review-showcase .google-card:nth-of-type(n+3) {
    display: none;
  }

  .faq-item span {
    min-height: auto;
    padding: 16px 18px 16px 48px;
    font-size: 15px;
  }

  .faq-item p,
  .faq-item[aria-expanded="true"] p {
    font-size: 14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .contact-grid span {
    width: 48px;
    height: 48px;
  }

  .footer-grid p,
  .footer-grid address,
  .footer-grid a,
  .footer-link-columns a,
  .footer-note p {
    font-size: 12px;
  }

  .footer-about p,
  .footer-about address,
  .footer-about a {
    align-items: flex-start;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-grid h3,
  .footer-note p {
    text-align: center;
  }

  .btn-footer {
    max-width: none;
  }

  .social-row {
    gap: 14px;
    max-width: 190px;
  }

  .social-btn {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .social-row a i {
    font-size: 25px;
  }

  .facebook i {
    font-size: 23px;
  }

  .instagram i {
    font-size: 26px;
  }

  .youtube i {
    font-size: 25px;
  }

  .float-call,
  .float-chat {
    right: 12px;
    width: 46px;
    height: 46px;
  }

  .copyright {
    text-align: center;
    font-size: 13px;
  }
}





/* ===================================
   RESPONSIVE CSS
   PASTE AT END OF style.css
=================================== */

/* ---------- Laptop ---------- */
@media (max-width: 1200px){

  .hero-grid{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .estimate-card{
    grid-column: 1 / -1;
    margin: 20px auto;
  }

  .service-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .blog-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .contact-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns: repeat(2,1fr);
  }
}


/* ---------- Tablet ---------- */
@media (max-width: 992px){

  .container{
    width: calc(100% - 30px);
  }

  /* NAVBAR */
  .menu-toggle{
    display:flex;
  }

  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#470000;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    display:none;
    padding:15px 0;
    z-index:999;
  }

  .main-nav.active{
    display:flex;
  }

  .main-nav a{
    width:100%;
    padding:15px 25px;
  }

  .nav-shell{
    position:relative;
  }

  /* HERO */

  .hero{
    min-height:auto;
    padding-bottom:40px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-copy{
    padding:40px 20px;
  }

  .hero h1{
    margin:20px auto;
  }

  .cash-title{
    margin:20px auto;
  }

  .hero-person{
    height:auto;
  }

  .hero-person img{
    max-width:400px;
    width:100%;
    transform:none;
    bottom:0;
  }

  .estimate-card{
    margin:30px auto;
  }

  .phone-strip{
    width:95%;
    margin:20px auto;
    font-size:32px;
    justify-content:center;
  }

  /* PROMISE */

  .promise-grid{
    position:static;
    grid-template-columns:1fr 1fr;
    gap:20px;
  }

  .why{
    padding-top:80px;
  }

  /* ABOUT */

  .split-grid{
    grid-template-columns:1fr;
  }

  .why-copy{
    padding:30px 20px;
  }

  .big-promise{
    min-height:auto;
    padding:30px;
  }

  /* SERVICES */

  .service-grid{
    grid-template-columns:1fr 1fr;
  }

  /* ADVANTAGE */

  .advantage-grid article{
    width:calc(50% - 20px);
  }

  /* PROOF */

  .proof-grid{
    grid-template-columns:1fr;
  }

  /* BLOG */

  .blog-grid{
    grid-template-columns:1fr 1fr;
  }

  /* REVIEW */

  .review-showcase{
    grid-template-columns:1fr;
  }

  .review-prev,
  .review-next{
    display:none;
  }

  /* CONTACT */

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

  /* FOOTER */

  .footer-grid{
    grid-template-columns:1fr;
  }

}


/* ---------- Mobile ---------- */
@media (max-width: 768px){

  .topbar-inner{
    flex-direction:column;
    padding:10px 0;
    display:none;
  }

  

  .hero h1{
    font-size:38px;
  }

  .cash-title{
    font-size:28px;
  }

  .hero-sub{
    font-size:22px;
  }

  .phone-strip{
    font-size:24px;
    padding:15px;
  }

  .promise-grid{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .blog-grid{
    grid-template-columns:1fr;
  }

  .proof-gallery{
    grid-template-columns:1fr;
  }

  .advantage-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .advantage-grid article{
    width:100%;
    max-width:100%;
  }

  .review-summary{
    grid-template-columns:1fr;
    text-align:center;
  }

  .google-card{
    min-height:auto;
  }

}


/* ---------- Small Mobile ---------- */
@media (max-width: 480px){

  .brand{
    width:75px;
  }

  .hero-copy{
    padding:30px 10px;
  }

  .hero h1{
    font-size:30px;
    padding:10px 15px;
  }

  .cash-title{
    font-size:22px;
  }

  .tamil-line{
    font-size:24px;
  }

  .hero-sub{
    font-size:17px;
  }

  .estimate-card{
    width:100%;
    margin:20px auto;
  }

  .lead-form button{
    width:100%;
  }

  .phone-strip{
    font-size:18px;
    gap:10px;
  }

  .section-heading h2{
    font-size:24px;
  }

  .contact-grid article{
    grid-template-columns:1fr;
    text-align:center;
  }
  .phone-strip{
   /*margin-top:-310px;*/
}

}
/* ============================================================
   FLOATING WHATSAPP + CALL BUTTONS
   Namespaced with "fab-" so it will NOT clash with your
   existing .float-call / .float-chat styles.
   ============================================================ */

.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fab-btn {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.fab-btn:hover,
.fab-btn:focus-visible {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.36);
  filter: brightness(1.06);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-call {
  background: var(--crimson, #B51D1D);
}

/* Pulsing ring around WhatsApp button */
.fab-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.7;
  animation: fabPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* Tooltip */
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 7px 14px;
  border-radius: 6px;
  background: #1A1A1A;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.fab-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left-color: #1A1A1A;
  transform: translateY(-50%);
}

.fab-btn:hover .fab-tooltip,
.fab-btn:focus-visible .fab-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ===== Responsive ===== */

@media (max-width: 640px) {
  .fab-stack {
    right: 14px;
    bottom: 14px;
    gap: 12px;
  }

  .fab-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  /* Tooltips get in the way on small screens */
  .fab-tooltip {
    display: none;
  }
}

/* Creative services responsive overrides */
@media (max-width: 1200px) {
  .services {
    padding: 64px 0 70px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .service-card,
  .service-card-feature,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4) {
    grid-column: auto;
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 54px 0 60px;
  }

  .services::after {
    top: 132px;
    width: 88vw;
  }

  .services .section-heading {
    margin-bottom: 32px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-grid::before {
    display: none;
  }

  .service-card {
    padding: 12px 12px 16px;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    margin-top: 0;
  }

  .service-art,
  .service-card-feature .service-art {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-step {
    top: 18px;
    right: 18px;
    font-size: 30px;
  }

  .service-card a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services .section-heading,
  .service-card,
  .star {
    animation: none;
  }

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

/* Unified footer polish */
.site-footer .footer-logo {
  width: 118px;
  height: auto;
}

.site-footer .footer-about p,
.site-footer .footer-about address,
.site-footer .footer-about a {
  overflow-wrap: anywhere;
}

.site-footer .footer-ic {
  flex: 0 0 24px;
  width: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--dark-gold);
  font-size: 17px;
}

.site-footer .btn-footer {
  width: 100%;
  max-width: 420px;
  min-height: 46px;
  gap: 8px;
  border: 1px solid rgba(240, 215, 122, 0.74);
  background: rgba(74, 0, 0, 0.42);
  color: var(--light-gold);
  text-align: center;
}

.site-footer .btn-footer:hover,
.site-footer .btn-footer:focus-visible {
  background: rgba(201, 133, 9, 0.2);
  color: var(--white);
}

.site-footer .social-row {
  justify-content: flex-start;
}

.site-footer .social-btn {
  text-align: center;
}

.site-footer .copyright {
  min-height: 42px;
  padding: 10px 12px;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer .copyright p {
  margin: 0;
}

@media (max-width: 640px) {
  .site-footer .footer-grid {
    gap: 30px;
  }

  .site-footer .footer-about p,
  .site-footer .footer-about address,
  .site-footer .footer-about a {
    justify-content: flex-start;
    text-align: left;
  }

  .site-footer .footer-links h3,
  .site-footer .footer-note h3 {
    text-align: left;
  }

  .site-footer .footer-note p {
    text-align: left;
  }

  .site-footer .social-row {
    justify-content: center;
  }
}

/* Footer rework */
.site-footer.section-dark {
  position: relative;
  padding: 58px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 52%, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #330000 0%, #300000 74%, #3c0000 100%);
  color: var(--white);
}

.site-footer.section-dark::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, #9c5f00, #d18a0a 38%, #f0bd45 50%, #c87500 68%, #9c5f00);
  box-shadow: 0 1px 0 rgba(255, 229, 143, 0.55);
}

.site-footer.section-dark::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 74px;
  width: min(310px, 30vw);
  aspect-ratio: 1.9 / 1;
  background: url("img/png/handhap.png") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  animation: footerGlow 7s ease-in-out infinite;
}

.site-footer .footer-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(310px, 1.14fr) minmax(310px, 1fr) minmax(310px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.site-footer .footer-logo {
  width: 102px;
  margin: 0 0 16px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.site-footer .footer-logo:hover {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.35));
}

.site-footer .footer-grid h3 {
  margin: 0 0 18px;
  color: #c98509;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.25;
  font-weight: 900;
}

.site-footer .footer-grid p,
.site-footer .footer-grid address,
.site-footer .footer-grid a {
  color: #f0dddd;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.site-footer .footer-about p,
.site-footer .footer-about address,
.site-footer .footer-about a {
  min-height: 32px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer .footer-ic {
  flex: 0 0 18px;
  width: 18px;
  display: inline-grid;
  place-items: center;
  color: #c98509;
  font-size: 15px;
  line-height: 1;
}

.site-footer .footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.site-footer .footer-link-columns a {
  position: relative;
  min-height: 22px;
  margin: 0 0 12px;
  padding: 2px 0 2px 19px;
  color: #fff2e5;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-footer .footer-link-columns a::before {
  content: "\203A";
  position: absolute;
  left: 0;
  top: 2px;
  width: 11px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 1px;
  background: #c98509;
  color: #10b6d3;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease;
}

.site-footer .footer-link-columns a:hover,
.site-footer .footer-link-columns a:focus-visible {
  color: #f0d77a;
  transform: translateX(5px);
}

.site-footer .footer-link-columns a:hover::before,
.site-footer .footer-link-columns a:focus-visible::before {
  background: #f0b733;
  transform: translateX(2px);
}

.site-footer .footer-note {
  position: relative;
  z-index: 1;
}

.site-footer .footer-note::after {
  display: none;
}

.site-footer .footer-note p {
  max-width: 360px;
  margin: 0 0 18px;
  color: #f0dddd;
  font-size: 12px;
  line-height: 1.72;
  text-align: left;
}

.site-footer .btn-footer {
  width: 100%;
  max-width: 360px;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #c98509;
  border-radius: 5px;
  background: rgba(75, 0, 0, 0.24);
  color: #f0b733;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 221, 109, 0.06);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.site-footer .btn-footer:hover,
.site-footer .btn-footer:focus-visible {
  transform: translateY(-2px);
  background: rgba(201, 133, 9, 0.16);
  border-color: #f0d77a;
  color: var(--white);
}

.site-footer .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  max-width: 240px;
  margin: 12px auto 0;
}

.site-footer .social-btn {
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.site-footer .social-row a i {
  width: 1em;
  height: 1em;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.site-footer .facebook { background: #486db8; }
.site-footer .instagram { background: linear-gradient(135deg, #ff7a00, #f01857 55%, #7b2dff); }
.site-footer .youtube { background: #dd2020; }

.site-footer .social-btn:hover,
.site-footer .social-btn:focus-visible {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.36);
  filter: brightness(1.08);
}

.site-footer .copyright {
  min-height: 40px;
  margin-top: 36px;
  padding: 9px min(5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  background: #6d0000;
  color: var(--white);
  text-align: left;
}

.site-footer .copyright p {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.site-footer .copyright p + p {
  display: none;
}

@keyframes footerGlow {
  0%, 100% {
    opacity: 0.1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.17;
    transform: translateY(-8px);
  }
}

@media (max-width: 1020px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-footer.section-dark {
    padding-top: 44px;
  }

  .site-footer .footer-grid {
    width: min(520px, calc(100% - 28px));
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer .footer-logo {
    margin-inline: auto;
  }

  .site-footer .footer-grid h3,
  .site-footer .footer-note p {
    text-align: left;
  }

  .site-footer .footer-link-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer .footer-note p,
  .site-footer .btn-footer {
    max-width: none;
  }

  .site-footer .social-row {
    justify-content: flex-start;
    margin-left: 0;
  }

  .site-footer .copyright {
    justify-content: center;
    text-align: center;
    padding-inline: 16px;
  }
}

/* Global floating contact icons */
.floating-actions,
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.floating-actions .floating-btn,
.fab-stack .fab-btn {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.floating-actions .floating-btn::before,
.fab-stack .fab-btn::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.84);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.floating-actions .floating-btn:hover,
.floating-actions .floating-btn:focus-visible,
.fab-stack .fab-btn:hover,
.fab-stack .fab-btn:focus-visible {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  filter: brightness(1.06);
}

.floating-actions .floating-btn:hover::before,
.floating-actions .floating-btn:focus-visible::before,
.fab-stack .fab-btn:hover::before,
.fab-stack .fab-btn:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.floating-actions .floating-whatsapp,
.fab-stack .fab-whatsapp {
  background: linear-gradient(135deg, #12b95b, #25d366);
}

.floating-actions .floating-whatsapp::before,
.fab-stack .fab-whatsapp::before {
  background: rgba(37, 211, 102, 0.22);
  animation: floatingPulse 2s ease-out infinite;
}

.floating-actions .floating-call,
.fab-stack .fab-call {
  background: linear-gradient(135deg, #6d0000, #c98509);
}

.floating-actions .floating-call::before,
.fab-stack .fab-call::before {
  background: rgba(201, 133, 9, 0.2);
}

.floating-actions .floating-label,
.fab-stack .fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  padding: 7px 12px;
  border-radius: 6px;
  background: #220000;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.floating-actions .floating-label::after,
.fab-stack .fab-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  border: 6px solid transparent;
  border-left-color: #220000;
  transform: translateY(-50%);
}

.floating-actions .floating-btn:hover .floating-label,
.floating-actions .floating-btn:focus-visible .floating-label,
.fab-stack .fab-btn:hover .fab-tooltip,
.fab-stack .fab-btn:focus-visible .fab-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@keyframes floatingPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media (max-width: 640px) {
  .floating-actions,
  .fab-stack {
    right: 14px;
    bottom: 14px;
    gap: 11px;
  }

  .floating-actions .floating-btn,
  .fab-stack .fab-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .floating-actions .floating-label,
  .fab-stack .fab-tooltip {
    display: none;
  }
}

/* Home services premium bento layout */
#services.services {
  padding: 78px 0 88px;
  background:
    radial-gradient(circle at 14% 10%, rgba(240, 183, 51, 0.18), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, #280000 0%, #5f0505 48%, #330000 100%);
}



#services .service-grid {
  max-width: 1180px;
  padding: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 26px;
  align-items: stretch;
}

#services .service-grid::before {
  inset: 50% auto auto 50%;
  width: calc(100% - 120px);
  height: calc(100% - 120px);
  border: 1px solid rgba(240, 183, 51, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(240, 183, 51, 0.24) 50%, transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(240, 183, 51, 0.24) 50%, transparent calc(50% + 1px));
  transform: translate(-50%, -50%);
}

#services .service-grid::after {
  content: "AG";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 209, 102, 0.56);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #f0d77a, #c98509 56%, #680a0a);
  color: #fff8dc;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

#services .service-card,
#services .service-card-feature,
#services .service-card:nth-child(2),
#services .service-card:nth-child(3),
#services .service-card:nth-child(4) {
  min-height: 318px;
  margin-top: 0;
  padding: 16px 18px 18px 16px;
  display: grid;
  grid-template-columns: minmax(150px, 38%) minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr auto auto;
  column-gap: 20px;
  align-items: start;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 232, 0.94)),
    linear-gradient(135deg, rgba(201, 133, 9, 0.16), transparent);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

#services .service-card:nth-child(1) {
  --svc-accent: #c98509;
  --svc-soft: rgba(201, 133, 9, 0.14);
  --svc-border: rgba(201, 133, 9, 0.46);
  --svc-shadow: rgba(201, 133, 9, 0.24);
}

#services .service-card:nth-child(2) {
  --svc-accent: #7b6be6;
  --svc-soft: rgba(123, 107, 230, 0.13);
  --svc-border: rgba(123, 107, 230, 0.42);
  --svc-shadow: rgba(123, 107, 230, 0.22);
}

#services .service-card:nth-child(3) {
  --svc-accent: #168f76;
  --svc-soft: rgba(22, 143, 118, 0.13);
  --svc-border: rgba(22, 143, 118, 0.42);
  --svc-shadow: rgba(22, 143, 118, 0.22);
}

#services .service-card:nth-child(4) {
  --svc-accent: #b51d1d;
  --svc-soft: rgba(181, 29, 29, 0.13);
  --svc-border: rgba(181, 29, 29, 0.44);
  --svc-shadow: rgba(181, 29, 29, 0.23);
}

#services .service-card::before {
  z-index: 3;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 68%);
}

#services .service-card::after {
  right: -52px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--svc-soft), transparent 68%);
}

#services .service-card:hover {
  transform: translateY(-9px);
  border-color: var(--svc-border);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.34);
}

#services .service-step {
  top: 18px;
  right: 18px;
  color: rgba(104, 10, 10, 0.08);
  font-size: 48px;
}

#services .service-art,
#services .service-card-feature .service-art {
  grid-column: 1;
  grid-row: 1 / 7;
  width: 100%;
  height: 100%;
  min-height: 270px;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.18), rgba(104, 10, 10, 0.09));
  box-shadow: inset 0 0 0 1px rgba(201, 133, 9, 0.16);
}

#services .service-art::after {
  inset: auto 12px 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--svc-accent), transparent);
  opacity: 0.72;
}

#services .service-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#services .star {
  grid-column: 2;
  margin: 2px 0 12px;
  background: linear-gradient(135deg, var(--svc-accent), #680a0a);
  box-shadow: 0 10px 20px var(--svc-shadow);
}

#services .service-card small,
#services .service-card h3,
#services .service-card p,
#services .service-tags,
#services .service-card > a {
  grid-column: 2;
}

#services .service-card small {
  background: var(--svc-soft);
  color: #680a0a;
}

#services .service-card h3 {
  font-size: clamp(18px, 1.35vw, 22px);
}

#services .service-card p {
  min-height: 0;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.52;
}

#services .service-tags {
  margin-bottom: 14px;
}

#services .service-tags span {
  border-color: var(--svc-border);
  color: #5f0505;
}

#services .service-card > a {
  width: fit-content;
  background: linear-gradient(135deg, #680a0a, var(--svc-accent));
}

@media (max-width: 1080px) {
  #services .service-grid {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  #services .service-grid::before,
  #services .service-grid::after {
    display: none;
  }
}

@media (max-width: 680px) {
  #services.services {
    padding: 56px 0 64px;
  }

  #services .service-grid {
    width: min(520px, calc(100% - 24px));
    padding: 0;
    gap: 18px;
  }

  #services .service-card,
  #services .service-card-feature,
  #services .service-card:nth-child(2),
  #services .service-card:nth-child(3),
  #services .service-card:nth-child(4) {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 13px 13px 17px;
  }

  #services .service-art,
  #services .service-card-feature .service-art {
    grid-column: 1;
    grid-row: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    margin-bottom: 16px;
  }

  #services .star,
  #services .service-card small,
  #services .service-card h3,
  #services .service-card p,
  #services .service-tags,
  #services .service-card > a {
    grid-column: 1;
  }

  #services .service-card > a {
    width: 100%;
  }
}

/* Home hero premium estimation form */
.hero .hero-grid {
  grid-template-columns: minmax(470px, 49%) minmax(250px, 23%) minmax(330px, 28%);
}

.hero .estimate-card {
  position: relative;
  width: min(368px, calc(100% - 18px));
  min-height: 0;
  margin: 42px clamp(18px, 3vw, 44px) 0 auto;
  padding: 24px 24px 22px;
  overflow: hidden;
  border: 1px solid rgba(240, 183, 51, 0.48);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 232, 0.95)),
    radial-gradient(circle at 20% 10%, rgba(240, 183, 51, 0.22), transparent 34%);
  box-shadow:
    0 26px 52px rgba(43, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero .estimate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.72) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.72s ease;
  pointer-events: none;
}

.hero .estimate-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 133, 9, 0.2), transparent 68%);
  pointer-events: none;
}

.hero .estimate-card:hover::before {
  transform: translateX(120%);
}

.hero .estimate-card h2 {
  position: relative;
  margin-bottom: 22px;
  color: #390000;
  font-size: clamp(21px, 1.8vw, 26px);
  letter-spacing: 0;
}

.hero .estimate-card h2::after {
  width: 74px;
  height: 4px;
  margin-top: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #680a0a, #d4af37, #680a0a);
}

.hero .lead-form {
  position: relative;
  z-index: 1;
  gap: 13px;
}

.hero .lead-form label span {
  margin-bottom: 6px;
  color: #3c2920;
  font-size: 12px;
  font-weight: 800;
}

.hero .lead-form input,
.hero .lead-form select {
  min-height: 47px;
  border: 1px solid rgba(104, 10, 10, 0.16);
  border-radius: 9px;
  padding: 0 14px;
  background: #fffdf9;
  font-size: 14px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(43, 26, 18, 0.08);
}

.hero .lead-form input:focus,
.hero .lead-form select:focus {
  border-color: #c98509;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 12px 22px rgba(43, 26, 18, 0.1);
}

.hero .lead-form button {
  width: 100%;
  min-height: 48px;
  margin-top: 4px;
  border-radius: 9px;
  background: linear-gradient(135deg, #680a0a, #c98509);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: 0 14px 28px rgba(104, 10, 10, 0.28);
}

.hero .lead-form button:hover,
.hero .lead-form button:focus-visible {
  background: linear-gradient(135deg, #c98509, #680a0a);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  /*.hero .hero-grid {*/
  /*  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.62fr);*/
  /*}*/
.hero .hero-grid{
    grid-template-columns: 1fr;
}
  .hero .estimate-card {
    width: min(620px, 100%);
    margin: 14px auto 0;
  }

  .hero .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .lead-form button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .hero .lead-form {
    grid-template-columns: 1fr;
  }

  .hero .estimate-card {
    width: min(100%, 520px);
    padding: 21px 16px 18px;
  }
}
