/* ============================================================
   RAGHUNATH HOMES — GLOBAL THEME CSS
   Apply to all pages via: <link rel="stylesheet" href="css/rh-theme.css">
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --rh-dark:    #3a3d3a;
  --rh-darker:  #2a2c2a;
  --rh-green:   #7dc242;
  --rh-green-d: #5fa030;
  --rh-green-l: #a8d87a;
  --rh-light:   #f6f8f4;
  --rh-white:   #ffffff;
  --rh-border:  #e4e9df;
  --rh-text:    #2a2c2a;
  --rh-muted:   #7a8372;
  --ff-head:    'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ease:       cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--ff-body);
  background: var(--rh-white);
  color: var(--rh-text);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: var(--ff-head);
  color: var(--rh-darker);
  line-height: 1.18;
}

a { color: var(--rh-green); transition: color .25s; }
a:hover { color: var(--rh-green-d); text-decoration: none; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── NAVBAR ── */
#ftco-navbar {
  background: var(--rh-darker) !important;
  padding: 14px 0;
  border-bottom: 3px solid var(--rh-green);
  transition: all .3s;
}
#ftco-navbar.scrolled {
  background: rgba(42,44,42,.97) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.navbar-brand {
  font-family: var(--ff-head) !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: var(--rh-white) !important;
  letter-spacing: 1px;
}
.nav-link {
  font-family: var(--ff-body) !important;
  font-size: .88rem !important;
  font-weight: 500 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8) !important;
  padding: 6px 14px !important;
  border-radius: 4px;
  transition: all .2s !important;
}
.nav-link:hover, .nav-item.active .nav-link {
  color: var(--rh-white) !important;
  background: rgba(125,194,66,.15);
}

/* ── HERO / SLIDER ── */
.home-slider .slider-item .overlay {
  background: linear-gradient(120deg, rgba(42,44,42,.78) 30%, rgba(58,61,58,.3) 100%);
}
.home-slider .slider-item .text h1,
.home-slider .slider-item .text .bread {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.home-slider .slider-item .text p { font-size: 1.1rem; color: rgba(255,255,255,.88); }
.breadcrumbs, .breadcrumbs a { color: rgba(255,255,255,.75) !important; font-family: var(--ff-body); font-size: .9rem; }
.breadcrumbs a:hover { color: var(--rh-green) !important; }

/* ── BUTTONS ── */
.btn-rh {
  display: inline-block;
  padding: 14px 36px;
  background: var(--rh-green);
  color: #fff !important;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid var(--rh-green);
  transition: all .3s var(--ease);
  text-decoration: none !important;
}
.btn-rh:hover {
  background: transparent;
  color: var(--rh-green) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125,194,66,.25);
}
.btn-rh-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff !important;
  margin-left: 12px;
}
.btn-rh-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn-white.btn-outline-white {
  border-color: var(--rh-green) !important;
  background: var(--rh-green) !important;
  color: #fff !important;
  font-family: var(--ff-body);
  font-weight: 600;
  border-radius: 3px;
  transition: all .3s;
}
.btn-white.btn-outline-white:hover { background: transparent !important; color: var(--rh-green) !important; }
.btn-custom { color: var(--rh-green) !important; font-weight: 600; font-family: var(--ff-body); font-size: .9rem; letter-spacing: .04em; transition: all .2s; }

/* ── SECTION LABELS ── */
.rh-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rh-green);
  margin-bottom: 12px;
}
.rh-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--rh-green); }
.rh-title { font-family: var(--ff-head); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--rh-darker); margin-bottom: 16px; }
.rh-sub { font-size: 1rem; color: var(--rh-muted); max-width: 560px; line-height: 1.72; }

/* ── HEADING SECTION OVERRIDES ── */
.heading-section .subheading {
  color: var(--rh-green) !important;
  font-family: var(--ff-body) !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}
.heading-section h2 { font-family: var(--ff-head); font-size: 2.4rem; }
.heading-section.heading-section-with-line:after { background: var(--rh-green) !important; }
.heading-section.heading-section-white .subheading { color: rgba(255,255,255,.8) !important; }
.heading-section.heading-section-white h2 { color: #fff; }

/* ── SERVICES STRIP ── */
.services-strip { background: var(--rh-white); padding: 60px 0; box-shadow: 0 8px 40px rgba(42,44,42,.08); position: relative; z-index: 2; }
.service-card { padding: 36px 28px; border: 1.5px solid var(--rh-border); border-radius: 12px; background: var(--rh-white); height: 100%; transition: all .35s var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--rh-green); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { border-color: var(--rh-green-l); box-shadow: 0 16px 40px rgba(125,194,66,.12); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: var(--rh-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; transition: background .3s; }
.service-card:hover .service-icon { background: rgba(125,194,66,.15); }
.service-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; color: var(--rh-darker); }
.service-card p { color: var(--rh-muted); font-size: .95rem; margin: 0; }

/* ── ABOUT IMAGE ── */
.about-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.about-img-wrap { position: relative; }
.about-badge { position: absolute; bottom: -24px; right: -24px; background: var(--rh-green); color: #fff; width: 130px; height: 130px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 12px 32px rgba(125,194,66,.35); z-index: 3; }
.about-badge .num { font-family: var(--ff-head); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.about-badge .txt { font-size: .72rem; font-weight: 600; letter-spacing: .06em; opacity: .9; text-align: center; }
.about-check { display: flex; align-items: center; gap: 10px; font-size: .93rem; color: var(--rh-text); margin-bottom: 10px; }
.about-check::before { content: '✓'; width: 22px; height: 22px; background: var(--rh-green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }

/* ── STATS ── */
.stats-section { background: var(--rh-darker); padding: 70px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%237dc242' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3C/g%3E%3C/svg%3E") repeat; }
.stat-item { text-align: center; padding: 20px; position: relative; z-index: 1; }
.stat-item .number, .stat-item strong.number { font-family: var(--ff-head); font-size: 3.8rem; font-weight: 700; color: var(--rh-green); line-height: 1; }
.stat-item .suffix { font-size: 2rem; color: var(--rh-green-l); }
.stat-item .label, .block-18 .text span { display: block; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 8px; font-weight: 500; }
.block-18 .text strong { font-family: var(--ff-head); font-size: 3.8rem; font-weight: 700; color: var(--rh-green); line-height: 1; }

/* ── SERVICE BIG CARDS ── */
.service-big-card { border-radius: 16px; overflow: hidden; position: relative; margin-bottom: 24px; cursor: pointer; }
.service-big-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s var(--ease); display: block; }
.service-big-card:hover img { transform: scale(1.06); }
.service-big-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(42,44,42,.88) 0%, rgba(42,44,42,.1) 60%); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; transition: background .3s; }
.service-big-card:hover .service-big-overlay { background: linear-gradient(0deg, rgba(42,44,42,.95) 0%, rgba(42,44,42,.35) 60%); }
.service-big-overlay h4 { font-size: 1.25rem; color: #fff; margin: 0 0 6px; }
.service-big-overlay p { font-size: .85rem; color: rgba(255,255,255,.75); margin: 0; }
.service-num { position: absolute; top: 16px; left: 16px; background: var(--rh-green); color: #fff; font-weight: 700; font-size: .8rem; padding: 4px 10px; border-radius: 20px; }

/* ── WHY US CARDS ── */
.why-card { background: var(--rh-white); border-radius: 14px; padding: 32px 24px; height: 100%; border: 1.5px solid var(--rh-border); transition: all .35s var(--ease); text-align: center; margin-bottom: 24px; }
.why-card:hover { border-color: var(--rh-green); box-shadow: 0 16px 40px rgba(125,194,66,.14); transform: translateY(-8px); }
.why-emoji { font-size: 2.6rem; display: block; margin-bottom: 16px; }
.why-card h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.why-card p { color: var(--rh-muted); font-size: .9rem; margin: 0; }

/* ── PROCESS ── */
.process-new { background: var(--rh-darker); padding: 90px 0; }
.process-new .rh-title { color: #fff; }
.process-new .rh-sub { color: rgba(255,255,255,.6); }
.process-step-new { position: relative; padding: 0 20px; text-align: center; }
.process-step-new::after { content: '→'; position: absolute; right: -20px; top: 28px; font-size: 1.5rem; color: var(--rh-green); opacity: .5; }
.process-step-new:last-child::after { display: none; }
.step-circle { width: 80px; height: 80px; border: 3px solid var(--rh-green); border-radius: 50%; color: var(--rh-green); font-family: var(--ff-head); font-size: 2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; background: rgba(125,194,66,.08); transition: all .3s; }
.process-step-new:hover .step-circle { background: var(--rh-green); color: #fff; transform: scale(1.1); }
.process-step-new h4 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.process-step-new p { color: rgba(255,255,255,.55); font-size: .88rem; }

/* ── GALLERY ── */
.gallery-item { overflow: hidden; border-radius: 12px; margin-bottom: 20px; position: relative; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s var(--ease); display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(42,44,42,.45); opacity: 0; transition: opacity .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.expand-btn { width: 44px; height: 44px; background: var(--rh-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; transform: scale(.7); transition: transform .3s; }
.gallery-item:hover .expand-btn { transform: scale(1); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--rh-green-d) 0%, var(--rh-green) 60%, var(--rh-green-l) 100%); padding: 70px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3C/g%3E%3C/svg%3E") repeat; }
.cta-banner h2 { font-family: var(--ff-head); font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; font-weight: 700; }
.cta-banner p { color: rgba(255,255,255,.88); font-size: 1.05rem; }
.btn-cta-white { background: #fff; color: var(--rh-green-d) !important; padding: 14px 36px; border-radius: 3px; font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; transition: all .3s; display: inline-block; text-decoration: none !important; }
.btn-cta-white:hover { background: var(--rh-darker); color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── SKILL BARS ── */
.skill-bar-wrap { margin-bottom: 20px; }
.skill-label { display: flex; justify-content: space-between; font-size: .88rem; font-weight: 600; color: var(--rh-darker); margin-bottom: 6px; }
.skill-track { height: 6px; background: var(--rh-border); border-radius: 6px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--rh-green-d), var(--rh-green)); border-radius: 6px; width: 0; transition: width 1.4s var(--ease); }

/* ── TESTIMONIALS ── */
.testimony-section { background: var(--rh-light); }
.testimony-wrap { background: var(--rh-white) !important; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.07); border-top: 4px solid var(--rh-green) !important; }
.testimony-wrap .quote { background: var(--rh-green) !important; }
.testimony-wrap .user-img .quote i { color: #fff !important; }
.testimony-wrap .name { color: var(--rh-darker); font-weight: 700; }
.testimony-wrap .position { color: var(--rh-green); font-size: .85rem; }

/* ── CONTACT BAR ── */
.contact-bar { background: var(--rh-white); border-top: 1px solid var(--rh-border); padding: 40px 0; }
.info-pill { display: flex; align-items: center; gap: 14px; }
.info-pill .ic { width: 46px; height: 46px; background: rgba(125,194,66,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--rh-green); }
.info-pill .det strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--rh-muted); font-weight: 600; }
.info-pill .det a { font-size: 1rem; font-weight: 600; color: var(--rh-darker); }

/* ── CONTACT FORM ── */
.contact-box { background: var(--rh-white); padding: 28px; border-radius: 14px; text-align: center; border: 1.5px solid var(--rh-border); transition: all .3s var(--ease); margin-bottom: 20px; }
.contact-box:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(125,194,66,.12); border-color: var(--rh-green); }
.contact-box .icon-box { width: 50px; height: 50px; background: rgba(125,194,66,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 14px; color: var(--rh-green); }
.contact-box h5 { font-size: 1.05rem; font-weight: 600; color: var(--rh-darker); margin-bottom: 6px; }
.contact-box p, .contact-box a { color: var(--rh-muted); font-size: .93rem; }
.form-control { border-radius: 8px; border: 1.5px solid var(--rh-border); padding: 12px 16px; font-family: var(--ff-body); font-size: .93rem; transition: all .25s; }
.form-control:focus { border-color: var(--rh-green); box-shadow: 0 0 0 3px rgba(125,194,66,.12); outline: none; }
.btn-submit { background: var(--rh-green); color: #fff; border: none; padding: 14px 36px; border-radius: 3px; font-family: var(--ff-body); font-weight: 600; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; transition: all .3s; cursor: pointer; }
.btn-submit:hover { background: var(--rh-green-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(125,194,66,.3); }

/* ── FOOTER ── */
.ftco-footer { background: var(--rh-darker) !important; }
.ftco-heading-2 { font-family: var(--ff-head); color: var(--rh-green) !important; font-size: 1.25rem !important; }
.ftco-footer a { color: rgba(255,255,255,.65) !important; }
.ftco-footer a:hover { color: var(--rh-green) !important; }
.ftco-footer-social li a { background: rgba(255,255,255,.08) !important; transition: all .3s; }
.ftco-footer-social li a:hover { background: var(--rh-green) !important; }
.ftco-footer .block-23 ul li .icon { color: var(--rh-green); }

/* ── MISC OVERRIDES ── */
.services .icon { background: rgba(125,194,66,.1) !important; }
.services .icon span { color: var(--rh-green) !important; }
#ftco-loader .path { stroke: var(--rh-green) !important; }
.ftco-go-top { background: var(--rh-green) !important; }
.bg-light { background: var(--rh-light) !important; }
.img.img-2 { border-radius: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
.page-hero .overlay { background: linear-gradient(120deg, rgba(42,44,42,.82) 30%, rgba(58,61,58,.4) 100%); }
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 { font-family: var(--ff-head); color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 12px; }

/* ── VISION / MISSION CARDS ── */
.vm-card { background: var(--rh-white); border-radius: 16px; padding: 44px 36px; text-align: center; border: 1.5px solid var(--rh-border); transition: all .35s var(--ease); height: 100%; position: relative; overflow: hidden; }
.vm-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--rh-green); transform: scaleX(0); transition: transform .4s var(--ease); }
.vm-card:hover::before { transform: scaleX(1); }
.vm-card:hover { box-shadow: 0 20px 50px rgba(125,194,66,.12); transform: translateY(-8px); }
.vm-icon { width: 72px; height: 72px; background: rgba(125,194,66,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.vm-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; color: var(--rh-darker); }
.vm-card p { color: var(--rh-muted); line-height: 1.75; margin: 0; }

/* ── TEAM CARDS ── */
.team-card { background: var(--rh-white); border-radius: 16px; overflow: hidden; border: 1.5px solid var(--rh-border); transition: all .35s var(--ease); }
.team-card:hover { box-shadow: 0 20px 50px rgba(125,194,66,.12); transform: translateY(-8px); border-color: var(--rh-green); }
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-card .team-info { padding: 24px; text-align: center; }
.team-card h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; color: var(--rh-darker); }
.team-card .role { font-size: .85rem; color: var(--rh-green); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.team-card p { color: var(--rh-muted); font-size: .9rem; margin: 0; }

/* ── TOOLS ── */
.tool-bubble { width: 130px; height: 130px; border-radius: 50%; background: var(--rh-white); border: 2px solid var(--rh-border); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: .95rem; color: var(--rh-darker); text-align: center; transition: all .3s var(--ease); box-shadow: 0 8px 24px rgba(0,0,0,.06); animation: toolFloat 4s ease-in-out infinite; }
.tool-bubble:hover { border-color: var(--rh-green); background: rgba(125,194,66,.08); transform: scale(1.08) translateY(-6px); box-shadow: 0 16px 40px rgba(125,194,66,.18); }
@keyframes toolFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── PROJECT FILTER ── */
.gallery-filter a { display: inline-block; padding: 8px 20px; margin: 5px; border-radius: 30px; background: var(--rh-light); text-decoration: none; color: var(--rh-muted); font-weight: 500; font-size: .88rem; transition: all .25s; border: 1.5px solid transparent; }
.gallery-filter a.active, .gallery-filter a:hover { background: var(--rh-green); color: #fff; border-color: var(--rh-green); }

/* ── FAQ ── */
.faq-item { border: 1.5px solid var(--rh-border); border-radius: 12px; margin-bottom: 14px; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--rh-green); }
.faq-q { padding: 20px 24px; font-weight: 600; font-size: 1rem; color: var(--rh-darker); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--rh-green); font-weight: 300; transition: transform .3s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .4s var(--ease); color: var(--rh-muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.rh-reveal { opacity: 0; transform: translateY(30px) scale(0.97); transition: all 0.55s cubic-bezier(.4,0,.2,1); }
.rh-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-badge { width:100px; height:100px; bottom:-16px; right:-10px; }
  .about-badge .num { font-size:1.8rem; }
  .process-step-new::after { display: none; }
  .section-pad { padding: 60px 0; }
}

/* ============================================================
   MOBILE SCROLL FIX
   ============================================================ */

/* Prevent overflow-x from hiding vertical scroll on mobile */
html, body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Owl carousel: allow vertical scroll to pass through on touch */
.owl-carousel {
  touch-action: pan-y !important;
}
.owl-stage-outer {
  touch-action: pan-y !important;
}

/* Scrollax performance class blocks pointer-events — override on mobile */
@media (max-width: 992px) {
  .scrollax-performance,
  .scrollax-performance *,
  .scrollax-performance *::before,
  .scrollax-performance *::after {
    pointer-events: auto !important;
  }
  /* Disable stellar parallax on mobile (it jitters and blocks scroll) */
  [data-stellar-background-ratio] {
    background-attachment: scroll !important;
  }
  /* Ensure the hero never exceeds viewport height on mobile */
  .home-slider.js-fullheight,
  .slider-item.js-fullheight {
    height: 100svh !important;
    min-height: -webkit-fill-available !important;
  }
}

/* iOS Safari 100vh fix */
@supports (-webkit-touch-callout: none) {
  .js-fullheight {
    height: -webkit-fill-available !important;
  }
}

/* ============================================================
   MOBILE SCROLL — ADDITIONAL TARGETED FIXES
   ============================================================ */

/* Use CSS custom property for iOS real viewport height */
.js-fullheight {
  height: calc(var(--vh, 1vh) * 100) !important;
}

/* Disable background-attachment:fixed on ALL mobile (causes blank + scroll lock on iOS) */
@media (max-width: 992px) {
  .ftco-section.img,
  section[style*="background-image"],
  .slider-item[style*="background-image"],
  .img-2[style*="background-image"] {
    background-attachment: scroll !important;
  }

  /* Ensure owl carousel drag doesn't eat vertical swipes */
  .owl-carousel,
  .owl-stage,
  .owl-stage-outer,
  .owl-item {
    touch-action: pan-y !important;
    -ms-touch-action: pan-y !important;
  }

  /* Remove any fixed-height locks that prevent scroll */
  body, html {
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Preloader can sometimes block scroll if it doesn't hide */
  #ftco-loader {
    pointer-events: none;
  }
}
