:root {
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gold: #d4af37;
  --light-gold: #f4d67a;
  --green: #2e5e3b;
  --dark: #1b1b1b;
  --muted: #6f746f;
  --line: rgba(46, 94, 59, 0.13);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(17, 38, 25, 0.13);
  --heading: "Playfair Display", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

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

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader span {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid transparent;
  transition: background 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, backdrop-filter 0.32s ease;
}

/* Shared sticky navigation used across every page */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(212, 175, 55, 0.18);
  box-shadow: 0 18px 46px rgba(17, 38, 25, 0.09);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1200px, calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  width: 158px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 16px rgba(212, 175, 55, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.72);
  opacity: 0.88;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  opacity: 1;
  transform: translateY(-2px);
  text-shadow: 0 8px 22px rgba(212, 175, 55, 0.26);
}

.nav-links a[data-page-link="contact"] {
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 32px rgba(46, 94, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(12px);
}

.nav-links a[data-page-link="contact"]:hover,
.nav-links a[data-page-link="contact"].active {
  color: #18351f;
  background: rgba(244, 214, 122, 0.46);
  border-color: rgba(212, 175, 55, 0.68);
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(17, 38, 25, 0.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 104px 0;
}

.section-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero,
.sub-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.22)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

/* Light luxury hero treatment with image, overlay, and soft gold accents */
.hero::after,
.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 32%, rgba(244, 214, 122, 0.28), transparent 28%),
    linear-gradient(180deg, transparent, rgba(247, 248, 250, 0.92));
}

.home-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 92px;
}

.sub-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 190px 0 92px;
}

.hero-content,
.sub-hero .section-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
}

.sub-hero .section-inner {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  line-height: 1.05;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.hero p,
.sub-hero p,
.section-copy p,
.section-heading p:not(.eyebrow),
.service-card p,
.detail-card p,
.glass-card p,
.team-card p,
.contact-panel p,
.site-footer p,
address,
.footer-links a {
  color: var(--muted);
}

.hero-content > p:not(.eyebrow),
.sub-hero p {
  max-width: 700px;
  font-size: 1.08rem;
}

.hero-actions,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  font-weight: 900;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.5s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(46, 94, 59, 0.16);
  border-color: var(--gold);
}

.btn:hover::before {
  transform: translateX(110%) skewX(-18deg);
}

.btn-primary {
  color: #17331f;
  background: linear-gradient(135deg, var(--gold), var(--light-gold));
}

.btn-secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
}

.hero-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.22);
  filter: blur(38px);
  pointer-events: none;
  animation: float 7s ease-in-out infinite;
}

.hero-glow-one {
  top: 20%;
  right: 11%;
}

.hero-glow-two {
  bottom: 12%;
  left: 8%;
  background: rgba(46, 94, 59, 0.18);
  animation-delay: -3s;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img,
.image-panel img,
.team-card img,
.detail-card img,
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack img {
  position: absolute;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  inset: 0 auto auto 0;
  width: 72%;
  height: 74%;
}

.image-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 62%;
  height: 56%;
  border: 8px solid var(--white);
}

.image-panel {
  height: 520px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mini-actions a {
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid rgba(212, 175, 55, 0.45);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.mini-actions a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.service-grid,
.mission-grid,
.stats-grid,
.team-grid,
.service-detail-grid,
.project-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.compact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.glass-card,
.detail-card,
.team-card,
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

/* Glassmorphism cards with subtle lift animations */
.service-card:hover,
.glass-card:hover,
.detail-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 30px 80px rgba(17, 38, 25, 0.16);
}

.service-card {
  padding: 32px;
}

.icon-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--green);
  background: linear-gradient(135deg, rgba(244, 214, 122, 0.35), rgba(46, 94, 59, 0.12));
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.22), 0 14px 26px rgba(46, 94, 59, 0.08);
  animation: iconFloat 5.5s ease-in-out infinite;
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.icon-badge svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge.small {
  width: 42px;
  height: 42px;
  min-width: 42px;
  margin: 0;
  border-radius: 12px;
}

.icon-badge.small svg {
  width: 22px;
  height: 22px;
}

.service-card:hover .icon-badge,
.detail-card:hover .icon-badge,
.glass-card:hover .icon-badge {
  transform: translateY(-5px) rotate(4deg) scale(1.04);
  color: var(--gold);
  background: linear-gradient(135deg, rgba(244, 214, 122, 0.48), rgba(255, 255, 255, 0.86));
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.34), 0 18px 34px rgba(212, 175, 55, 0.18);
}

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

.glass-card {
  padding: 38px;
}

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

.stat-card {
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--white), var(--off-white));
  box-shadow: 0 18px 42px rgba(17, 38, 25, 0.08);
}

.stat-card strong {
  display: block;
  color: var(--green);
  font-family: var(--heading);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-card {
  overflow: hidden;
}

.team-card img {
  height: 330px;
  transition: transform 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.06);
}

.team-card h3,
.team-card p {
  padding: 0 24px;
}

.team-card h3 {
  margin-top: 22px;
}

.team-card p {
  margin-bottom: 26px;
}

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

.detail-card {
  overflow: hidden;
  padding-bottom: 30px;
}

.detail-card img {
  height: 240px;
  transition: transform 0.5s ease;
}

.detail-card:hover img {
  transform: scale(1.06);
}

.detail-card .icon-badge {
  margin: -32px 28px 18px;
  position: relative;
  background: var(--white);
}

.detail-card h2,
.detail-card p {
  padding: 0 28px;
}

.detail-card h2 {
  font-size: 1.75rem;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.filter-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  transform: translateY(-2px);
  color: #15301d;
  background: var(--light-gold);
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: var(--off-white);
  transition: transform 0.32s ease, opacity 0.28s ease;
}

/* Filtered project cards fade out before being removed from layout */
.project-card.is-hiding {
  transform: scale(0.96);
  opacity: 0;
}

.project-card.hidden {
  display: none;
}

.project-card img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(15, 29, 18, 0.82));
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 90px 26px 26px;
  color: var(--white);
}

.project-overlay span {
  color: var(--light-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(10, 10, 10, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-panel,
.contact-form {
  padding: 34px;
}

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

.contact-list a,
.contact-list p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-weight: 800;
}

.map-frame {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 22px;
  background: var(--off-white);
  box-shadow: 0 20px 46px rgba(17, 38, 25, 0.11);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  filter: saturate(0.92) contrast(1.02);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  font-weight: 900;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--dark);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.13);
}

.form-note {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--green);
  font-weight: 800;
}

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

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 54px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 250, 0.8)),
    radial-gradient(circle at 82% 26%, rgba(244, 214, 122, 0.34), transparent 28%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.26);
}

.site-footer {
  padding-top: 78px;
  color: var(--white);
  background: #101410;
}

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

.footer-logo img {
  width: 174px;
  margin-bottom: 18px;
}

.site-footer h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
address a,
address span {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}

.footer-links a:hover,
address a:hover {
  color: var(--light-gold);
}

address {
  display: grid;
  gap: 9px;
  font-style: normal;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 214, 122, 0.3);
  border-radius: 50%;
  color: var(--light-gold);
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-4px);
  background: rgba(212, 175, 55, 0.12);
}

.footer-bottom {
  margin-top: 58px;
  padding: 22px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
  animation: whatsappFloat 3.2s ease-in-out infinite;
}

/* Fixed WhatsApp action remains visible across all pages */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(16px, -18px, 0); }
}

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

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

@keyframes pulse {
  0% { transform: scale(0.86); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 1080px) {
  .service-detail-grid,
  .project-grid,
  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-links a[data-page-link="contact"] {
    justify-content: center;
    margin-top: 6px;
  }

  .split-layout,
  .mission-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: 420px;
  }

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

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

@media (max-width: 640px) {
  .navbar,
  .section-inner,
  .hero-content,
  .sub-hero .section-inner {
    width: min(100% - 24px, 1200px);
  }

  .brand {
    width: 128px;
  }

  .section {
    padding: 76px 0;
  }

  .home-hero {
    min-height: 92vh;
  }

  .sub-hero {
    min-height: 430px;
    padding: 142px 0 62px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .mini-actions,
  .filter-controls {
    width: 100%;
  }

  .btn,
  .filter-btn {
    width: 100%;
  }

  .compact-grid,
  .service-detail-grid,
  .project-grid,
  .stats-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: 360px;
  }

  .image-panel {
    height: 360px;
  }

  .project-card {
    min-height: 300px;
  }

  .contact-panel,
  .contact-form,
  .cta-card {
    padding: 26px;
    border-radius: 22px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
