@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #f58634;
  --orange-dark: #bd4a05;
  --green: #a8cf45;
  --green-bright: #b3d826;
  --ink: #111713;
  --ink-soft: #273029;
  --paper: #f4f6f1;
  --line: #d9ded5;
  --white: #ffffff;
  --muted: #606a62;
  --max: 1180px;
  --shadow: 0 22px 55px rgba(17, 23, 19, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 999; padding: 10px 16px; background: var(--white); }
.skip-link:focus { top: 14px; }

.topline { background: var(--ink); color: #dce2dc; font-size: .82rem; }
.topline-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topline-group { display: flex; align-items: center; gap: 24px; }
.topline a:hover { color: var(--green-bright); }
.topline .status { display: inline-flex; align-items: center; gap: 9px; }
.topline .status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(179,216,38,.13); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(244,246,241,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 105px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a:not(.nav-cta) { position: relative; padding: 29px 0 24px; font-weight: 750; font-size: .88rem; letter-spacing: .035em; text-transform: uppercase; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 3px; background: var(--orange); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 20px; border: 2px solid var(--orange); background: var(--orange); color: #19120d; font-weight: 850; letter-spacing: .015em; transition: .2s ease; }
.nav-cta:hover, .button:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-2px); }
.button-dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--green); border-color: var(--green); color: var(--ink); }
.button-outline { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); }
.button-outline:hover { border-color: var(--green-bright); background: var(--green-bright); color: var(--ink); }
.menu-toggle { display: none; width: 48px; height: 44px; border: 0; background: var(--ink); color: white; font-size: 1.4rem; }

.eyebrow { display: inline-block; margin: 0 0 16px; color: var(--orange-dark); font-size: .78rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow-light { color: var(--green-bright); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.85rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head p:last-child { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.section { padding: 96px 0; }

.hero-slider { position: relative; overflow: hidden; min-height: 660px; background: var(--ink); color: var(--white); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; }
.hero-slide.active { position: relative; opacity: 1; visibility: visible; z-index: 2; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,15,11,.96) 0%, rgba(10,15,11,.82) 42%, rgba(10,15,11,.28) 78%), linear-gradient(0deg, rgba(10,15,11,.5), transparent 60%); z-index: 1; }
.hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-grid { position: relative; z-index: 2; min-height: 660px; display: flex; align-items: center; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; max-width: 800px; padding: 76px 0 110px; }
.hero-slider h1, .hero-slider h2 { max-width: 800px; font-size: clamp(2.85rem, 6vw, 5.8rem); }
.hero-slider h1 span, .hero-slider h2 span { color: var(--green-bright); }
.hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 26px 0 32px; color: #c9d0ca; font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.slider-controls { position: absolute; z-index: 6; left: 50%; bottom: 46px; width: min(calc(100% - 40px), var(--max)); transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; }
.slider-dots { display: flex; gap: 9px; }
.slider-dot { width: 42px; height: 5px; padding: 0; border: 0; background: rgba(255,255,255,.35); }
.slider-dot.active { background: var(--green-bright); }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrow { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.48); background: rgba(17,23,19,.5); color: white; font-size: 1.25rem; }
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }

.capability-strip { position: relative; z-index: 4; margin-top: -34px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); box-shadow: var(--shadow); }
.capability { min-height: 128px; padding: 25px; border-right: 1px solid var(--line); }
.capability:last-child { border-right: 0; }
.capability b { display: block; margin-bottom: 7px; font-size: .75rem; color: var(--orange-dark); letter-spacing: .14em; text-transform: uppercase; }
.capability span { font-weight: 800; line-height: 1.35; }

.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.intro-index { position: sticky; top: 130px; padding-top: 4px; color: var(--orange); font-size: 5.8rem; font-weight: 950; letter-spacing: -.08em; line-height: .85; }
.intro-photo { position: sticky; top: 130px; height: 440px; overflow: hidden; box-shadow: var(--shadow); }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 7px; background: linear-gradient(90deg, var(--orange) 0 48%, var(--green) 48% 100%); }
.intro-copy .lead { font-size: clamp(1.3rem, 2.4vw, 2rem); line-height: 1.35; font-weight: 720; }
.intro-copy .columns { margin-top: 26px; columns: 2; column-gap: 42px; color: var(--muted); }

.services-panel { background: var(--ink); color: var(--white); }
.services-panel .section-head p:last-child { color: #aeb8b0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #39413b; border-left: 1px solid #39413b; }
.service-card { position: relative; isolation: isolate; overflow: hidden; min-height: 300px; padding: 30px; border-right: 1px solid #39413b; border-bottom: 1px solid #39413b; transition: .22s ease; }
.service-card::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: var(--service-image); background-size: cover; background-position: center; opacity: .22; transition: opacity .22s ease, transform .35s ease; }
.service-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(17,23,19,.35), rgba(17,23,19,.97) 78%); }
.service-card:hover { transform: translateY(-4px); }
.service-card:hover::before { opacity: .38; transform: scale(1.04); }
.service-number { display: flex; align-items: center; justify-content: space-between; margin-bottom: 52px; color: var(--green-bright); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.service-number::after { content: "↗"; font-size: 1.35rem; }
.service-card p { margin-top: 14px; color: #aeb8b0; font-size: .94rem; }
.service-card a { color: var(--green-bright); font-weight: 800; }

.work-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: var(--white); }
.work-image { min-height: 450px; }
.work-image img { width: 100%; height: 100%; object-fit: cover; }
.work-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 7vw, 100px); }
.work-copy p:not(.eyebrow) { margin-top: 22px; color: var(--muted); }
.steps { margin-top: 28px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 16px 0; border-top: 1px solid var(--line); }
.step strong:first-child { color: var(--orange-dark); }

.cta-band { padding: 52px 0; background: var(--orange); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2 { max-width: 760px; font-size: clamp(1.9rem, 3.5vw, 3.25rem); }

.page-hero { position: relative; overflow: hidden; padding: 112px 0 96px; background-color: var(--ink); background-size: cover; background-position: center; color: var(--white); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,15,11,.94), rgba(10,15,11,.72) 55%, rgba(10,15,11,.3)); }
.page-hero .container { position: relative; z-index: 1; }
.about-hero { background-image: url('../images/panel-technician.jpg'); }
.services-hero { background-image: url('../images/electrical-installation-generated.webp'); }
.contact-hero { background-image: url('../images/solar-pv-generated.webp'); background-position: center 58%; }
.page-hero p:not(.eyebrow) { max-width: 660px; margin-top: 20px; color: #bdc5bf; font-size: 1.08rem; }
.crumbs { margin-bottom: 30px; color: #aab4ac; font-size: .85rem; }
.crumbs span { color: var(--green-bright); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.value-card { padding: 32px; background: var(--white); border-top: 4px solid var(--green); box-shadow: 0 13px 40px rgba(17,23,19,.06); }
.value-card:nth-child(2) { border-color: var(--orange); }
.value-card p { margin: 13px 0 0; color: var(--muted); }
.statement-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.statement { min-height: 310px; padding: 46px; background: var(--ink); color: var(--white); }
.statement:nth-child(2) { background: var(--green); color: var(--ink); }
.statement p { margin-top: 22px; color: #bcc5bd; }
.statement:nth-child(2) p { color: #2d382c; }

.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-detail { display: grid; grid-template-columns: 170px 1fr; min-height: 230px; background: var(--white); box-shadow: 0 10px 35px rgba(17,23,19,.06); overflow: hidden; }
.service-detail img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-copy { padding: 28px; }
.service-detail small { display: block; margin-bottom: 12px; color: var(--orange-dark); font-weight: 900; letter-spacing: .11em; }
.service-detail p { margin: 13px 0 0; color: var(--muted); font-size: .94rem; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-cards { display: grid; gap: 12px; margin-top: 28px; }
.contact-card { padding: 22px 24px; background: var(--white); border-left: 4px solid var(--green); }
.contact-card:nth-child(2) { border-color: var(--orange); }
.contact-card b { display: block; margin-bottom: 4px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-card span, .contact-card a { color: var(--muted); }
.quote-form { padding: 42px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #bec7bf; border-radius: 0; background: #fbfcfa; color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(168,207,69,.28); border-color: var(--green); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .82rem; }
.map-wrap { height: 430px; margin-top: 70px; background: #dce1da; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.site-footer { padding-top: 70px; background: #0b100c; color: #aeb7b0; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .9fr; gap: 70px; padding-bottom: 54px; }
.footer-brand img { width: 112px; margin-bottom: 18px; }
.footer-brand p { max-width: 460px; }
.footer-title { margin-bottom: 17px; color: var(--white); font-size: .82rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--green-bright); }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.socials a { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 11px; border: 1px solid #3c453e; color: var(--white); font-size: .8rem; font-weight: 800; }
.socials a:hover { border-color: var(--green); color: var(--green-bright); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #293029; font-size: .84rem; }
.footer-bottom a { color: var(--green-bright); }
.whatsapp-float { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 18px; background: #25d366; color: #07170c; box-shadow: 0 14px 35px rgba(0,0,0,.2); font-weight: 900; }
.whatsapp-float:hover { transform: translateY(-3px); }

/* Home 3 renewable-energy layout */
.home3-hero { position: relative; overflow: hidden; min-height: 670px; background: #101713; color: var(--white); }
.home3-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; background-image: var(--slide-image); background-size: cover; background-position: center; transition: opacity .7s ease, visibility .7s ease; }
.home3-slide.active { position: relative; opacity: 1; visibility: visible; }
.home3-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,23,19,.97), rgba(16,23,19,.91) 45%, rgba(16,23,19,.7)), radial-gradient(circle at 12% 20%, rgba(168,207,69,.14), transparent 28%); }
.home3-hero-grid { position: relative; z-index: 2; min-height: 670px; display: grid; grid-template-columns: .88fr 1.12fr; gap: 65px; align-items: center; }
.home3-copy { padding: 86px 0 125px; }
.home3-copy h1, .home3-copy h2 { font-size: clamp(3rem, 5.6vw, 5.5rem); }
.home3-copy h1 span, .home3-copy h2 span { color: var(--green-bright); }
.home3-copy > p:not(.eyebrow) { max-width: 590px; margin: 25px 0 33px; color: #c4cec6; font-size: 1.1rem; }
.home3-gallery { display: grid; grid-template-columns: .82fr 1.18fr .82fr; gap: 12px; height: 500px; transform: rotate(-2deg); }
.home3-gallery figure { position: relative; overflow: hidden; margin: 0; min-width: 0; }
.home3-gallery figure:nth-child(1), .home3-gallery figure:nth-child(3) { margin-block: 54px; }
.home3-gallery img { width: 100%; height: 100%; object-fit: cover; }
.home3-gallery::after { content: ""; position: absolute; right: -24px; bottom: -24px; width: 135px; height: 135px; background-image: radial-gradient(var(--orange) 2px, transparent 2px); background-size: 14px 14px; opacity: .7; }
.home3-controls { position: absolute; z-index: 5; left: 50%; bottom: 42px; width: min(calc(100% - 40px), var(--max)); transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; }

.home3-services { padding: 94px 0; background: #f8faf6; }
.home3-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.home3-heading-row h2 { max-width: 650px; }
.home3-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home3-service { position: relative; overflow: hidden; min-height: 390px; background: var(--ink); color: white; box-shadow: var(--shadow); }
.home3-service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.home3-service::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,13,9,.96), rgba(8,13,9,.05) 72%); }
.home3-service-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 28px; }
.home3-service-content small { color: var(--green-bright); font-weight: 900; letter-spacing: .12em; }
.home3-service-content h3 { margin: 8px 0 12px; }
.home3-service-content p { color: #c2cac3; font-size: .92rem; }
.home3-service:hover img { transform: scale(1.05); }

.home3-about { padding: 105px 0; background: var(--white); }
.home3-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.home3-about-image { position: relative; min-height: 560px; }
.home3-about-image > img { width: calc(100% - 70px); height: 560px; object-fit: cover; }
.home3-about-image .mini-photo { position: absolute; right: 0; bottom: 42px; width: 245px; height: 260px; object-fit: cover; border: 12px solid white; box-shadow: var(--shadow); }
.experience-box { position: absolute; left: 28px; bottom: -24px; min-width: 210px; padding: 24px; background: var(--orange); color: var(--ink); }
.experience-box strong { display: block; font-size: 2.2rem; line-height: 1; }
.experience-box span { font-weight: 850; }
.home3-about-copy > p:not(.eyebrow) { margin: 24px 0; color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 25px 0 34px; }
.check-list span { display: flex; gap: 12px; font-weight: 750; }
.check-list span::before { content: "✓"; color: var(--orange-dark); font-weight: 950; }

.home3-feature { position: relative; overflow: hidden; padding: 100px 0; background: linear-gradient(90deg, rgba(9,14,10,.94), rgba(9,14,10,.68)), url('../images/solar-water-pump-generated.webp') center/cover; color: var(--white); }
.home3-feature-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.home3-feature-copy p:not(.eyebrow) { margin-top: 22px; color: #c5cec7; }
.home3-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.home3-point { padding: 26px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(5px); }
.home3-point b { display: block; margin-bottom: 8px; color: var(--green-bright); }
.home3-point p { margin: 0; color: #cbd3cc; font-size: .9rem; }

.home3-why { padding: 100px 0; }
.home3-why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.home3-why-image { position: sticky; top: 125px; height: 520px; }
.home3-why-image img { width: 100%; height: 100%; object-fit: cover; }
.home3-reasons { display: grid; gap: 0; margin-top: 28px; border-top: 1px solid var(--line); }
.home3-reason { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.home3-reason strong:first-child { color: var(--orange-dark); font-size: 1.1rem; }
.home3-reason p { margin: 7px 0 0; color: var(--muted); }

@media (max-width: 960px) {
  .topline-group:first-child { display: none; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 122px 0 auto 0; display: none; padding: 26px 20px 34px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; gap: 0; }
  .main-nav a:not(.nav-cta) { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 16px; }
  .hero-copy { padding: 72px 0 115px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability { border-bottom: 1px solid var(--line); }
  .intro-grid { grid-template-columns: 1fr; gap: 26px; }
  .intro-index, .intro-photo { position: static; }
  .intro-photo { height: 390px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .work-band { grid-template-columns: 1fr; }
  .work-image { max-height: 460px; }
  .value-grid, .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .service-list { grid-template-columns: 1fr; }
  .home3-hero-grid, .home3-about-grid, .home3-feature-grid, .home3-why-grid { grid-template-columns: 1fr; }
  .home3-copy { padding-bottom: 40px; }
  .home3-gallery { height: 390px; margin-bottom: 120px; }
  .home3-service-grid { grid-template-columns: repeat(2, 1fr); }
  .home3-why-image { position: static; height: 430px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topline-inner { justify-content: center; }
  .topline .status { display: none; }
  .topline-group { gap: 12px; }
  .brand img { width: 92px; }
  .nav-wrap { min-height: 72px; }
  .main-nav { inset-block-start: 110px; }
  .hero-slider, .hero-grid { min-height: 610px; }
  .hero-copy { padding: 62px 0 125px; }
  .hero-slider h1, .hero-slider h2 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero-slide::before { background: linear-gradient(90deg, rgba(10,15,11,.93), rgba(10,15,11,.62)); }
  .slider-controls { width: calc(100% - 28px); bottom: 28px; }
  .capability-strip { margin-top: 0; }
  .capability-grid, .service-grid, .statement-grid { grid-template-columns: 1fr; }
  .capability { min-height: 105px; border-right: 0; }
  .section { padding: 72px 0; }
  .intro-copy .columns { columns: 1; }
  .service-card { min-height: 230px; }
  .service-number { margin-bottom: 32px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 68px 0 58px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail img { height: 220px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .quote-form { padding: 28px 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 54px; padding: 0; justify-content: center; border-radius: 50%; font-size: 1.25rem; }
  .home3-hero, .home3-hero-grid { min-height: auto; }
  .home3-copy { padding: 65px 0 34px; }
  .home3-copy h1, .home3-copy h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .home3-gallery { height: 300px; gap: 7px; margin-bottom: 115px; }
  .home3-controls { width: calc(100% - 28px); bottom: 28px; }
  .home3-heading-row { align-items: flex-start; flex-direction: column; }
  .home3-service-grid, .home3-points { grid-template-columns: 1fr; }
  .home3-service { min-height: 340px; }
  .home3-about { padding: 75px 0; }
  .home3-about-grid { gap: 65px; }
  .home3-about-image, .home3-about-image > img { min-height: 420px; height: 420px; }
  .home3-about-image > img { width: 100%; }
  .home3-about-image .mini-photo { display: none; }
  .experience-box { left: 14px; bottom: -30px; }
  .home3-feature, .home3-why { padding: 75px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
