:root {
  --royal: #1557ff;
  --cyan: #00b8d9;
  --pink: #f72585;
  --green: #13c784;
  --royal-dark: #07307f;
  --navy: #06142f;
  --yellow: #ffd43b;
  --orange: #ff7a1a;
  --ink: #111827;
  --muted: #637083;
  --light: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(6, 20, 47, 0.16);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.86)),
    radial-gradient(circle at 8% 12%, rgba(255, 212, 59, 0.2), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(0, 184, 217, 0.16), transparent 28%);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.section {
  padding: 92px 0;
}

.section.light {
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 212, 59, 0.14), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(21, 87, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbff, #eef4ff);
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 212, 59, 0.28), transparent 27%),
    radial-gradient(circle at 84% 8%, rgba(247, 37, 133, 0.18), transparent 26%),
    radial-gradient(circle at 76% 82%, rgba(0, 184, 217, 0.18), transparent 28%),
    linear-gradient(135deg, #06142f, #092f82 54%, #06142f);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-title.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title.center .eyebrow {
  justify-content: center;
}

.section-title.center .eyebrow::before {
  display: none;
}

h1,
h2,
h3 {
  line-height: 1.12;
  font-weight: 900;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  color: var(--white);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--navy);
}

.dark h2,
.dark h3 {
  color: var(--white);
}

p {
  color: var(--muted);
}

.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.38), transparent 42%);
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}

.btn:hover::after {
  transform: translateX(110%);
}

.btn.primary {
  color: #102044;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 14px 35px rgba(255, 122, 26, 0.35);
  animation: buttonGlow 2.8s ease-in-out infinite;
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn.blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--royal), #06b6d4);
  box-shadow: 0 14px 35px rgba(21, 87, 255, 0.25);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(6, 20, 47, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 22px;
}

.logo {
  display: grid;
  gap: 1px;
}

.logo strong {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.15;
}

.logo span {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  color: #22304a;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--royal);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: linear-gradient(135deg, var(--royal), var(--cyan));
  padding: 11px 15px;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(21, 87, 255, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 78% 22%, rgba(255, 212, 59, 0.34), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(247, 37, 133, 0.23), transparent 28%),
    linear-gradient(105deg, rgba(6, 20, 47, 0.91), rgba(6, 20, 47, 0.6) 45%, rgba(255, 122, 26, 0.25)),
    url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1900&q=86");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 42% 43%, transparent 43% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 115px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 92px 0 132px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero p {
  max-width: 760px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-stat {
  padding: 17px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-stat strong {
  display: block;
  font-size: 1.55rem;
}

.paint-splash,
.paint-splash.two,
.paint-splash.three,
.paint-splash.four,
.paint-splash.five {
  position: absolute;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 46% 54% 38% 62% / 55% 36% 64% 45%;
  opacity: 0.8;
  filter: blur(0.2px) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
  mix-blend-mode: screen;
  animation: floatSplash 7s ease-in-out infinite;
}

.paint-splash::before,
.paint-splash::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.paint-splash::before {
  width: 24%;
  height: 24%;
  right: -10%;
  top: 18%;
}

.paint-splash::after {
  width: 15%;
  height: 15%;
  left: 13%;
  bottom: -10%;
}

.paint-splash {
  right: 10%;
  top: 18%;
  background: linear-gradient(135deg, rgba(255, 212, 59, 0.95), rgba(255, 122, 26, 0.86));
}

.paint-splash.two {
  right: 25%;
  bottom: 16%;
  width: 95px;
  height: 95px;
  background: linear-gradient(135deg, rgba(21, 87, 255, 0.86), rgba(0, 184, 217, 0.72));
  animation-delay: -1.6s;
}

.paint-splash.three {
  left: 6%;
  bottom: 20%;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.8), rgba(255, 122, 26, 0.82));
  animation-delay: -3s;
}

.paint-splash.four {
  right: 4%;
  bottom: 34%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(19, 199, 132, 0.8), rgba(0, 184, 217, 0.78));
  animation-delay: -4.2s;
}

.paint-splash.five {
  left: 19%;
  top: 18%;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255, 212, 59, 0.78), rgba(247, 37, 133, 0.68));
  animation-delay: -2.4s;
}

.brush-stroke {
  position: absolute;
  right: -40px;
  bottom: 18%;
  z-index: 1;
  width: 360px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--orange), var(--pink), transparent);
  transform: rotate(-10deg);
  animation: brushMove 3.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 20px rgba(255, 122, 26, 0.35));
}

.image-strip {
  position: relative;
  z-index: 4;
  margin-top: -54px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.strip-card,
.image-card,
.service-card,
.why-card,
.testimonial-card,
.contact-card,
.value-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.strip-card {
  position: relative;
  height: 188px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.strip-card::after,
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6, 20, 47, 0.84), transparent 68%),
    linear-gradient(135deg, rgba(21, 87, 255, 0.18), rgba(255, 122, 26, 0.2));
}

.strip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(21, 87, 255, 0.22);
}

.strip-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  pointer-events: none;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 25px 0 30px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #23314b;
  background: linear-gradient(135deg, #eef4ff, #fff7d6);
  font-weight: 800;
  border: 1px solid rgba(21, 87, 255, 0.08);
}

.feature-list i {
  color: var(--orange);
}

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

.service-card {
  color: var(--ink);
  position: relative;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before,
.why-card::before,
.value-card::before,
.contact-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--royal), var(--cyan), var(--yellow), var(--orange), var(--pink));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.service-card:hover,
.why-card:hover,
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 65px rgba(6, 20, 47, 0.24);
}

.service-card:hover::before,
.why-card:hover::before,
.value-card:hover::before,
.contact-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.service-img {
  height: 190px;
  overflow: hidden;
}

.service-card img,
.strip-card img,
.gallery-card img,
.why-card img,
.image-card img {
  transition: transform 0.55s ease;
}

.service-card:hover img,
.strip-card:hover img,
.gallery-card:hover img,
.why-card:hover img,
.image-card:hover img {
  transform: scale(1.08);
}

.service-body {
  padding: 22px;
}

.service-body i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--royal), var(--cyan), var(--orange));
  box-shadow: 0 12px 25px rgba(21, 87, 255, 0.24);
}

.service-body h3 {
  color: var(--navy);
  margin-bottom: 9px;
  font-size: 1.12rem;
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(6, 20, 47, 0.78), transparent 58%),
    linear-gradient(135deg, rgba(21, 87, 255, 0.1), rgba(255, 212, 59, 0.12));
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.gallery-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 60px rgba(21, 87, 255, 0.22);
}

.gallery-card:hover::before {
  opacity: 0.65;
}

.gallery-card.tall {
  grid-row: span 4;
}

.gallery-card.medium {
  grid-row: span 3;
}

.gallery-card.short {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.featured {
  grid-column: span 2;
  grid-row: span 4;
}

.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card .why-img {
  height: 260px;
}

.why-card .why-body {
  padding: 24px;
}

.why-card h3 {
  color: var(--navy);
  margin-bottom: 9px;
}

.counter-band {
  padding: 56px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 32%, rgba(255, 212, 59, 0.28), transparent 24%),
    radial-gradient(circle at 86% 50%, rgba(247, 37, 133, 0.24), transparent 25%),
    linear-gradient(135deg, var(--royal-dark), var(--royal), var(--orange));
}

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

.counter-item {
  padding: 22px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.counter {
  display: block;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  font-weight: 900;
}

.counter-item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(6, 20, 47, 0.2);
}

.stars {
  color: var(--orange);
  margin-bottom: 14px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--royal), var(--orange));
  font-weight: 900;
}

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

.contact-card {
  position: relative;
  padding: 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 55px rgba(21, 87, 255, 0.16);
}

.contact-card i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 15px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--royal), var(--cyan), var(--orange));
  font-size: 1.25rem;
}

.booking {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 212, 59, 0.22), transparent 26%),
    linear-gradient(105deg, rgba(6, 20, 47, 0.94), rgba(6, 20, 47, 0.76)),
    url("https://images.pexels.com/photos/2724749/pexels-photo-2724749.jpeg?auto=compress&cs=tinysrgb&w=1500");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.booking h2 {
  color: var(--white);
}

.booking p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 14px;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  outline: none;
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 20, 47, 0.86), rgba(21, 87, 255, 0.46), rgba(255, 122, 26, 0.34));
}

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

.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
}

.about-hero {
  background-image: url("https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.services-hero {
  background-image: url("https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.contact-hero {
  background-image: url("https://images.pexels.com/photos/1457842/pexels-photo-1457842.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

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

.value-card {
  position: relative;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card i {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-wide {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 0;
  min-height: 220px;
}

.service-wide .service-img {
  height: 100%;
}

.map-panel {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 36px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.floating-actions {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 16px 32px rgba(6, 20, 47, 0.22);
  pointer-events: auto;
  animation: floatButton 2.8s ease-in-out infinite;
}

.float-btn.call {
  background: var(--royal);
}

.float-btn.whatsapp {
  background: #25d366;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSplash {
  0%,
  100% {
    border-radius: 46% 54% 38% 62% / 55% 36% 64% 45%;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    border-radius: 62% 38% 58% 42% / 42% 60% 40% 58%;
    transform: translate3d(0, -22px, 0) rotate(12deg) scale(1.06);
  }
}

@keyframes brushMove {
  0%,
  100% {
    transform: translateX(0) rotate(-10deg);
    opacity: 0.55;
  }
  50% {
    transform: translateX(-74px) rotate(-10deg) scaleX(1.12);
    opacity: 0.95;
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 14px 35px rgba(255, 122, 26, 0.28);
  }
  50% {
    box-shadow: 0 18px 44px rgba(255, 212, 59, 0.46);
  }
}

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

@media (max-width: 1020px) {
  .nav-links,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links.open {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .nav-links.open a:hover {
    background: var(--light);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 86px;
  }

  .split,
  .booking,
  .service-list-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .nav-links.open {
    top: 74px;
  }

  .logo strong {
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 62px 0 88px;
  }

  .hero p {
    font-size: 1rem;
    margin: 18px 0 24px;
  }

  .btn-row .btn {
    width: 100%;
  }

  .hero-stats,
  .strip-grid,
  .services-grid,
  .why-grid,
  .counter-grid,
  .testimonial-grid,
  .contact-grid,
  .value-grid,
  .service-list-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .strip-card {
    height: 172px;
  }

  .service-img {
    height: 176px;
  }

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

  .service-wide .service-img {
    height: 210px;
  }

  .about-image {
    min-height: 340px;
  }

  .booking {
    padding: 22px;
    gap: 24px;
  }

  .page-hero {
    min-height: 330px;
    padding: 54px 0;
  }

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

  .gallery-card.tall,
  .gallery-card.medium,
  .gallery-card.short,
  .gallery-card.wide,
  .gallery-card.featured {
    grid-column: auto;
    grid-row: auto;
    height: 270px;
  }

  .brush-stroke {
    width: 230px;
    right: -80px;
  }

  .paint-splash {
    width: 92px;
    height: 92px;
  }

  .paint-splash.two,
  .paint-splash.four,
  .paint-splash.five {
    display: none;
  }
}
