:root {
  --red: #e10626;
  --red-2: #ff3b57;
  --red-dark: #930017;
  --black: #08080a;
  --black-2: #101014;
  --black-3: #16161d;
  --white: #ffffff;
  --offwhite: #f5f7fb;
  --text: #17171d;
  --muted: #6d7280;
  --line: rgba(255,255,255,0.08);
  --line-dark: rgba(0,0,0,0.08);
  --glass: rgba(255,255,255,0.08);
  --glass-2: rgba(255,255,255,0.04);
  --shadow: 0 18px 50px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.16);
  --shadow-dark: 0 30px 80px rgba(0,0,0,0.45);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1200px, 92%);
  --transition: 0.35s cubic-bezier(.2,.8,.2,1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(225,6,38,0.05), transparent 20%),
    radial-gradient(circle at bottom left, rgba(225,6,38,0.04), transparent 22%),
    linear-gradient(180deg, #ffffff, #fafbff);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

/* LOADER BAR */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 2000;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  box-shadow: 0 0 20px rgba(225, 6, 38, 0.45);
}

/* TOPBAR */
.topbar {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    linear-gradient(135deg, #0d0d11, #13131a);
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.2px;
}

.logo span {
  color: var(--red);
}

.logo::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 0 22px rgba(225,6,38,0.45);
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-weight: 700;
  color: var(--black);
  position: relative;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(225, 6, 38, 0.24);
}

/* HERO */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5,5,8,0.95), rgba(8,8,10,0.74)),
    url('images/ChatGPT\ Image\ Mar\ 9\,\ 2026\,\ 12_04_23\ AM.png') center/cover no-repeat;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(225,6,38,0.24), transparent 26%),
    radial-gradient(circle at 88% 15%, rgba(255,59,87,0.2), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(225,6,38,0.12), transparent 24%);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 90%);
  pointer-events: none;
}

.home-hero-advanced .container {
  position: relative;
  z-index: 2;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 2;
}

.hero {
  padding: 120px 0 100px;
}

.small-hero {
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.badge {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  margin-bottom: 18px;
}

.section-tag {
  background: rgba(225,6,38,0.08);
  color: var(--red);
  border: 1px solid rgba(225,6,38,0.15);
}

.center-light .section-tag {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.hero h1,
.page-hero h1,
.section-title h2,
.cta-box h2,
.steps-text h2,
.contact-card h2,
.service-item h2 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  max-width: 760px;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  margin-bottom: 12px;
}

.hero-text,
.page-hero p {
  max-width: 670px;
  color: rgba(255,255,255,0.84);
  font-size: 1.04rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 15px;
  font-weight: 800;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-130%);
  transition: 0.8s ease;
}

.btn:hover::before {
  transform: translateX(130%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 16px 32px rgba(225,6,38,0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(225,6,38,0.34);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.stat-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.12rem;
  font-family: 'Montserrat', sans-serif;
}

.stat-card span {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.hero-showcase {
  position: relative;
}

.glass-card {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);          /* near-fully transparent */
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);               /* very light blur so logo shows through */
  -webkit-backdrop-filter: blur(2px);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent, rgba(225,6,38,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.glass-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 50%;
  height: 240%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.08),   /* reduced from 0.18 */
    transparent
  );
  transform: rotate(20deg);
  transition: 0.9s ease;
  pointer-events: none;
}

.hero-box h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}

.hero-box ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-box li {
  padding: 13px 15px;
  padding-left: 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);    /* almost invisible fill */
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* SECTIONS */
.section {
  padding: 95px 0;
}

.section-title {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 12px;
  letter-spacing: -0.7px;
}

.section-title p {
  color: var(--muted);
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0b0f, #15151c);
  color: var(--white);
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(225,6,38,0.12), transparent 25%),
    radial-gradient(circle at bottom right, rgba(225,6,38,0.08), transparent 25%);
  pointer-events: none;
}

.center-light h2,
.center-light p {
  color: var(--white);
}

/* GRIDS */
.cards,
.pricing-grid,
.gallery,
.steps-grid,
.footer-grid,
.service-list,
.contact-grid,
.form-grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CARD BASE */
.card,
.service-item,
.contact-card,
.booking-form,
.price-box,
.step-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.service-item,
.contact-card,
.booking-form,
.price-box,
.step-card {
  padding: 28px;
}

.card,
.service-item,
.price-box,
.step-card,
.gallery-item {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card::before,
.service-item::before,
.price-box::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(225,6,38,0.08) 50%, transparent 100%);
  opacity: 0;
  transition: .45s ease;
  pointer-events: none;
}

.card:hover,
.service-item:hover,
.price-box:hover,
.step-card:hover,
.gallery-item:hover {
  transform: translateY(-10px);
}

.card:hover,
.service-item:hover,
.price-box:hover,
.step-card:hover {
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
  border-color: rgba(225,6,38,0.12);
}

.card:hover::before,
.service-item:hover::before,
.price-box:hover::before,
.step-card:hover::before {
  opacity: 1;
}

.card h3,
.service-item h2,
.price-box h3,
.step-card h3 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.card h3,
.service-item h2 {
  color: var(--black);
}

.card p,
.service-item p,
.step-card p,
.contact-card p,
.price-box p {
  color: var(--muted);
}

.card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--red);
  font-weight: 800;
}

/* PRICING */
.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.price-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
}

.price-box h3 {
  color: var(--red);
}

.price-box p {
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 800;
}

/* GALLERY */
.gallery {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 300px;
  box-shadow: var(--shadow);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.78));
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  align-items: end;
}

.gallery-overlay span {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
}

/* LIGHT PANEL */
.light-panel-section {
  background:
    radial-gradient(circle at left top, rgba(225,6,38,0.05), transparent 24%),
    linear-gradient(180deg, #fcfcfd, #f4f6fb);
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.steps-text p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

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

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(225,6,38,0.1);
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

/* CTA */
.cta-section {
  padding-top: 20px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 60px 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, #0d0d11, #1a1a22);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-dark);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(225,6,38,0.22), transparent 25%),
    radial-gradient(circle at bottom left, rgba(255,59,87,0.12), transparent 22%);
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box p:last-of-type {
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 14px auto 0;
}

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

/* SERVICES PAGE */
.premium-service-list {
  grid-template-columns: repeat(2, 1fr);
}

/* CONTACT */
.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-card {
  background: linear-gradient(180deg, #0f0f13, #1b1b23);
  color: var(--white);
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-card p {
  color: rgba(255,255,255,0.8);
}

/* FORM */
.form-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.premium-form {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

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

.booking-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-weight: 800;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 18px;
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease, transform .2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-color: rgba(225,6,38,0.3);
  box-shadow: 0 0 0 4px rgba(225,6,38,0.08);
}

.full-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* FOOTER */
footer {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #09090b, #0f1014);
  color: var(--white);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(225,6,38,0.12), transparent 20%),
    radial-gradient(circle at left bottom, rgba(225,6,38,0.08), transparent 20%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

footer h3,
footer h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 14px;
}

footer p,
footer a {
  display: block;
  color: rgba(255,255,255,0.72);
  margin-bottom: 10px;
  transition: var(--transition);
}

footer a:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1300;
  background: linear-gradient(135deg, #10c95c, #0aa445);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(13, 187, 82, 0.28);
  transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(13, 187, 82, 0.35);
}

/* REVEAL */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

/* EXTRA PREMIUM */
.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-highlight .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14d868, #10b955);
  box-shadow: 0 0 16px rgba(20,216,104,0.55);
}

.metric-strip {
  margin-top: -34px;
  position: relative;
  z-index: 5;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.metric-card strong {
  display: block;
  font-size: 1.35rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 4px;
  color: var(--black);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid,
  .steps-layout,
  .contact-grid,
  .premium-service-list,
  .footer-grid,
  .form-grid,
  .stats-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    right: 4%;
    left: 4%;
    background: rgba(16,16,21,0.98);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: var(--transition);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-menu a {
    color: var(--white);
  }

  .hero {
    padding: 100px 0 84px;
  }

  .section {
    padding: 78px 0;
  }

  .topbar-content {
    justify-content: center;
    text-align: center;
  }

  .metric-strip {
    margin-top: 0;
  }
}

@media (max-width: 640px) {

  .container {
    width: 92%;
  }

  /* HERO FIX */
  .hero {
    padding: 70px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .hero h1 {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .badge {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .hero-showcase {
    width: 100%;
  }

  .glass-card {
    width: 100%;
  }

  /* IMPORTANT */
  .hero,
  .page-hero {
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .floating-shape {
    display: none;
  }

  .page-hero h1,
  .section-title h2,
  .steps-text h2,
  .cta-box h2,
  .contact-card h2 {
    font-size: 2rem;
  }

  .card,
  .service-item,
  .contact-card,
  .booking-form,
  .step-card,
  .price-box,
  .glass-card,
  .metric-card {
    padding: 22px;
  }

  .gallery-item {
    min-height: 240px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}
  .gallery-item {
    min-height: 240px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -2;
  opacity: 0.22;
  pointer-events: none;
  animation: floatGlow 16s ease-in-out infinite;
}

body::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 40, 80, 0.95), transparent 65%);
}

body::after {
  right: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(225, 6, 38, 0.8), transparent 65%);
  animation-delay: 4s;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translate(0,0) scale(1);
  }
  50% {
    transform: translate(40px, 30px) scale(1.08);
  }
}

/* fancy section divider */
.section {
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(220px, 42%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,6,38,0.3), transparent);
}

/* animated text gradient */
.hero h1,
.page-hero h1 {
  background: linear-gradient(90deg, #ffffff 0%, #ffd7de 25%, #ffffff 50%, #ff8fa2 75%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 6s linear infinite;
}

@keyframes shimmerText {
  to {
    background-position: 200% center;
  }
}

/* premium nav glow */
.nav-menu a:hover,
.nav-menu a.active {
  text-shadow: 0 0 18px rgba(225,6,38,0.28);
}

/* logo stronger */
.logo {
  text-shadow: 0 2px 18px rgba(225,6,38,0.12);
}

/* fancy buttons */
.btn {
  isolation: isolate;
}

.btn-primary {
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent, rgba(255,255,255,0.1));
  z-index: -1;
  opacity: 0.5;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
}

.btn-secondary:hover {
  box-shadow: 0 14px 30px rgba(255,255,255,0.14);
}

/* super shiny cards */
.card,
.service-item,
.price-box,
.step-card,
.metric-card,
.contact-card,
.booking-form,
.glass-card {
  overflow: hidden;
}

.card::after,
.service-item::after,
.price-box::after,
.step-card::after,
.metric-card::after,
.contact-card::after,
.booking-form::after,
.glass-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 50%;
  height: 240%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  transform: rotate(20deg);
  transition: 0.9s ease;
  pointer-events: none;
}

.card:hover::after,
.service-item:hover::after,
.price-box:hover::after,
.step-card:hover::after,
.metric-card:hover::after,
.contact-card:hover::after,
.booking-form:hover::after,
.glass-card:hover::after {
  left: 120%;
}

/* stronger premium hover */
.card:hover,
.service-item:hover,
.price-box:hover,
.step-card:hover,
.metric-card:hover {
  box-shadow:
    0 26px 60px rgba(0,0,0,0.14),
    0 0 0 1px rgba(225,6,38,0.06),
    0 0 28px rgba(225,6,38,0.08);
}

/* glowing pricing cards */
.price-box {
  position: relative;
}

.price-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(225,6,38,0.18), transparent, rgba(255,59,87,0.18));
  z-index: 0;
  opacity: 0;
  transition: 0.4s ease;
}

.price-box > * {
  position: relative;
  z-index: 1;
}

.price-box:hover::before {
  opacity: 1;
}

/* gallery even cooler */
.gallery-item {
  border: 1px solid rgba(255,255,255,0.14);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), transparent 40%, transparent 60%, rgba(225,6,38,0.18));
  opacity: 0;
  transition: 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

/* hero box list cooler */
.hero-box li {
  position: relative;
  padding-left: 42px;
}

.hero-box li::before {
  content: "✦";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff667f;
  font-size: 1rem;
  text-shadow: 0 0 12px rgba(255,102,127,0.45);
}

/* stats glowing */
.stat-card {
  position: relative;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0.5;
}

/* cool metric cards */
.metric-card {
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.metric-card:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-12px);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.12),
    0 0 26px rgba(225,6,38,0.1);
}

/* section headings more dramatic */
.section-title h2,
.steps-text h2,
.cta-box h2,
.contact-card h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after,
.steps-text h2::after,
.cta-box h2::after,
.contact-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  box-shadow: 0 0 16px rgba(225,6,38,0.25);
}

/* floating WhatsApp pulse */
.whatsapp-float {
  animation: whatsappPulse 2.2s infinite;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 187, 82, 0.36), 0 16px 34px rgba(13, 187, 82, 0.28);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(13, 187, 82, 0), 0 16px 34px rgba(13, 187, 82, 0.28);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 187, 82, 0), 0 16px 34px rgba(13, 187, 82, 0.28);
  }
}

/* footer luxury glow */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 220px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
}

/* form fields better */
.booking-form input,
.booking-form textarea,
.booking-form select {
  background: linear-gradient(180deg, #ffffff, #fcfcff);
}

.booking-form input:hover,
.booking-form textarea:hover,
.booking-form select:hover {
  border-color: rgba(225,6,38,0.18);
}

/* super premium mouse glow area */
.mouse-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(225,6,38,0.14), transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(18px);
  mix-blend-mode: screen;
}

/* stronger dark sections */
.dark-section,
.cta-box,
.contact-card,
footer {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* small floating shapes */
.hero .floating-shape,
.page-hero .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  animation: floatShape 10s ease-in-out infinite;
  pointer-events: none;
}

.hero .shape-1,
.page-hero .shape-1 {
  width: 80px;
  height: 80px;
  top: 14%;
  right: 10%;
}

.hero .shape-2,
.page-hero .shape-2 {
  width: 46px;
  height: 46px;
  bottom: 18%;
  right: 30%;
  animation-delay: 2s;
}

.hero .shape-3,
.page-hero .shape-3 {
  width: 120px;
  height: 120px;
  top: 58%;
  right: -20px;
  animation-delay: 4s;
}

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

/* responsive polish */
@media (max-width: 640px) {
  body::before,
  body::after {
    width: 240px;
    height: 240px;
    filter: blur(70px);
  }

  .hero h1,
  .page-hero h1 {
    background-size: 300% auto;
  }

  .section-title h2::after,
  .steps-text h2::after,
  .cta-box h2::after,
  .contact-card h2::after {
    width: 56px;
  }
}
/* CONTACT PAGE ADVANCED */
.contact-hero .container {
  max-width: 820px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-left-stack,
.contact-right-stack {
  display: grid;
  gap: 24px;
}

.contact-card-premium,
.business-hours-card,
.map-card,
.contact-form-advanced {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.contact-card-premium::before,
.business-hours-card::before,
.map-card::before,
.contact-form-advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 45%, rgba(225,6,38,0.05));
  pointer-events: none;
}

.contact-mini-tag {
  margin-bottom: 14px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.contact-info-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #fff;
}

.contact-info-item p,
.contact-info-item a {
  color: rgba(255,255,255,0.8);
  word-break: break-word;
}

.contact-info-item a:hover {
  color: #fff;
}

.quick-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-white-btn {
  border: 1px solid rgba(255,255,255,0.14);
}

.business-hours-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fafe);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}

.business-hours-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--black);
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.hours-list div:last-child {
  border-bottom: none;
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  color: var(--black);
}

.contact-form-advanced {
  padding: 30px;
}

.form-heading {
  margin-bottom: 20px;
}

.form-heading h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--black);
}

.form-heading p:last-child {
  color: var(--muted);
}

.map-card {
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
}

.map-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.map-card-top h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--black);
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(225,6,38,0.08);
  color: var(--red);
  font-weight: 800;
  border: 1px solid rgba(225,6,38,0.12);
}

.map-link:hover {
  background: rgba(225,6,38,0.12);
}

.map-frame-wrap {
  overflow: hidden;
  border-radius: 22px;
  min-height: 380px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
}

.map-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
}

.contact-cta-strip {
  padding-top: 10px;
}

@media (max-width: 980px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .map-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .contact-info-item {
    grid-template-columns: 1fr;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-form-advanced,
  .business-hours-card,
  .map-card {
    padding: 22px;
  }

  .map-frame-wrap,
  .map-frame-wrap iframe {
    min-height: 300px;
    height: 300px;
  }
}
/* HOME HERO ADVANCED */
.home-hero-advanced .hero-grid {
  align-items: center;
}

.hero-box-top {
  margin-bottom: 16px;
}

.hero-mini-tag {
  margin-bottom: 12px;
}

.hero-mini-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.hero-mini-strip div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-mini-strip strong {
  display: block;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 4px;
}

.hero-mini-strip span {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

/* APP SECTION */
.app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(225,6,38,0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f7f9ff);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.app-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--black);
}

.app-content > p {
  color: var(--muted);
  max-width: 620px;
}

.app-feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.app-feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(0,0,0,0.05);
}

.app-feature-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(225,6,38,0.1), rgba(255,95,126,0.08));
  font-size: 1.1rem;
}

.app-feature-item p {
  color: var(--text);
  font-weight: 600;
}

.app-dark-btn {
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);
}

.app-dark-btn:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  border-color: transparent;
}

/* PHONE STORY MOCKUP */
.app-visual {
  display: flex;
  justify-content: center;
}

.phone-story-card {
  position: relative;
  width: min(340px, 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 650px;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(180deg, #0a0a0d, #1c1d24);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 60px rgba(225,6,38,0.12);
  animation: phoneFloat 4.5s ease-in-out infinite;
  z-index: 2;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: #050507;
  z-index: 3;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.phone-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,6,38,0.18), transparent 65%);
  filter: blur(30px);
  z-index: 1;
}

.phone-floating-badge {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
  backdrop-filter: blur(16px);
}

.badge-one {
  top: 110px;
  right: -10px;
  animation: badgeFloat 4s ease-in-out infinite;
}

.badge-two {
  left: -10px;
  bottom: 120px;
  animation: badgeFloat 4s ease-in-out infinite 1.2s;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0px) rotate(-3deg);
  }
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

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

/* TRUST STRIP */
.trust-strip-section {
  padding-top: 20px;
}

.trust-strip-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f1015, #1a1c23);
  color: var(--white);
  box-shadow: var(--shadow-dark);
}

.trust-strip-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-points div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.trust-points strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
  color: #fff;
}

.trust-points span {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .app-grid,
  .trust-strip-box,
  .trust-points,
  .hero-mini-strip {
    grid-template-columns: 1fr;
  }

  .phone-story-card {
    min-height: 560px;
  }

  .badge-one {
    right: 0;
  }

  .badge-two {
    left: 0;
  }
}

@media (max-width: 640px) {
  .phone-frame {
    width: 240px;
    height: 500px;
  }

  .phone-story-card {
    min-height: 520px;
  }

  .phone-floating-badge {
    font-size: 0.84rem;
    padding: 10px 12px;
  }

  .app-feature-item {
    grid-template-columns: 1fr;
  }

  .trust-strip-box {
    padding: 24px;
  }
}
