/* ============================================================
   EWBS PROPERTIES — ANIMATION v8 ULTRA 3D
   Home + Developer pages — cinematic, premium, immersive
   ============================================================ */

/* ════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
   ════════════════════════════════════════════════ */
:root {
  --red: #de1717;
  --red-dark: #b01010;
  --red-glow: rgba(222,23,23,0.4);
  --gold: #c9a84c;
  --gold-light: #F5E4A8;
  --dark: #0a0e1a;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.14);
}

/* ════════════════════════════════════════════════
   2. GLOBAL 3D PERSPECTIVE STAGE
   ════════════════════════════════════════════════ */
body {
  perspective: 1200px;
  perspective-origin: 50% 30%;
}

/* ════════════════════════════════════════════════
   3. HERO SECTION — EXTRA DEPTH PARTICLES
   ════════════════════════════════════════════════ */
#fre-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background:
    radial-gradient(circle 2px at 20% 30%, rgba(212,168,75,0.7) 0%, transparent 2px),
    radial-gradient(circle 1.5px at 75% 18%, rgba(255,255,255,0.5) 0%, transparent 2px),
    radial-gradient(circle 2px at 50% 65%, rgba(222,23,23,0.6) 0%, transparent 2px),
    radial-gradient(circle 1px at 88% 44%, rgba(212,168,75,0.45) 0%, transparent 2px),
    radial-gradient(circle 1.5px at 35% 80%, rgba(255,255,255,0.35) 0%, transparent 2px);
  animation: heroDustFloat 12s ease-in-out infinite alternate;
}
@keyframes heroDustFloat {
  0%   { transform: translateY(0) translateX(0); }
  50%  { transform: translateY(-18px) translateX(8px); }
  100% { transform: translateY(6px) translateX(-6px); }
}

/* Hero scan line effect — REMOVED */

/* ════════════════════════════════════════════════
   4. HERO BUILDING — ENHANCED 3D GLOW HALO
   ════════════════════════════════════════════════ */
.fre-building-layer::after {
  content: '';
  position: absolute;
  bottom: -5%;
  right: -2%;
  width: clamp(300px, 45vw, 720px);
  height: clamp(200px, 30vw, 480px);
  background: radial-gradient(ellipse, rgba(222,23,23,0.12) 0%, rgba(212,168,75,0.05) 40%, transparent 70%);
  filter: blur(40px);
  animation: buildingHalo 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 3;
}
@keyframes buildingHalo {
  0%   { transform: scale(1) translateY(0); opacity: 0.8; }
  100% { transform: scale(1.12) translateY(-20px); opacity: 1; }
}

/* ════════════════════════════════════════════════
   5. HERO CONTENT — 3D TILT + MAGNETIC EFFECT
   ════════════════════════════════════════════════ */
.fre-badge {
  will-change: transform;
  transition: transform 0.3s ease;
}
.fre-badge:hover {
  transform: translateX(0) scale(1.06) translateZ(10px);
  box-shadow: 0 6px 28px rgba(222,23,23,0.60);
}

/* Headline 3D depth shimmer */
.fre-hl-2 {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Stats cards 3D */
.fre-stat:hover .fre-stat-n {
  transform: translateZ(15px) scale(1.08);
  transition: transform 0.3s ease;
}

/* Search bar 3D hover */
.fre-search-bar:hover {
  transform: translateY(-3px) scale(1.01);
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s ease !important;
}

/* ════════════════════════════════════════════════
   6. SECTION — CITIES CARDS ULTRA 3D
   ════════════════════════════════════════════════ */
.cities-item {
  transform-style: preserve-3d;
  will-change: transform;
}
.cities-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,75,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
  border-radius: 16px;
}
.cities-item:hover::before { opacity: 1; }

/* Shine sweep on city cards */
.cities-item::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 50%;
  height: 220%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  z-index: 4;
}
.cities-item:hover::after {
  left: 140%;
}

/* ════════════════════════════════════════════════
   7. HOW IT WORKS — FLOATING 3D ICONS
   ════════════════════════════════════════════════ */
.box-icon.style-3 .image img {
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), filter 0.4s ease;
  will-change: transform;
}
.box-icon.style-3:hover .image img {
  transform: translateZ(30px) scale(1.15) rotateY(-15deg);
  filter: drop-shadow(0 12px 24px rgba(222,23,23,0.35));
}

/* Number badge on steps */
.box-icon.style-3 .content a.h4::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 8px var(--red-glow);
  animation: stepDot 2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes stepDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

/* ════════════════════════════════════════════════
   8. WHY CHOOSE — PARALLAX IMAGE FRAMES
   ════════════════════════════════════════════════ */
.perfect-home .wrap-image {
  position: relative;
}

.perfect-home .image {
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
  border-radius: 18px;
  overflow: hidden;
}
.perfect-home .image:hover {
  transform: perspective(900px) rotateY(-6deg) rotateX(3deg) scale(1.03) translateY(-8px);
  box-shadow: 20px 30px 60px rgba(0,0,0,0.28), 0 0 0 2px rgba(222,23,23,0.2);
}
.perfect-home .image img {
  transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
}
.perfect-home .image:hover img {
  transform: scale(1.08);
}

/* ════════════════════════════════════════════════
   9. MISSION COUNTER CARDS — 3D FLIP REVEAL
   ════════════════════════════════════════════════ */
.number-counter.style-1 {
  transform-style: preserve-3d;
  position: relative;
}
/* Title styling handled in Index.html inline CSS to keep specificity clean */

/* Animated bottom bar */
.number-counter.style-1::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  border-radius: 0 0 18px 18px;
}
.number-counter.style-1:hover::after {
  transform: scaleX(1);
}

/* ════════════════════════════════════════════════
   10. PARALLAX BANNER — CINEMATIC OVERLAY
   ════════════════════════════════════════════════ */
.parallax-wrap.style-1 {
  isolation: isolate;
}
.parallax-wrap.style-1 .heading {
  position: relative;
  display: inline-block;
}
.parallax-wrap.style-1 .heading::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,75,0.3), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(8px);
  transform: translateY(4px);
  z-index: -1;
  animation: textGlow 3s ease-in-out infinite alternate;
}
@keyframes textGlow {
  0%   { filter: blur(6px); opacity: 0.5; }
  100% { filter: blur(12px); opacity: 0.9; }
}

/* ════════════════════════════════════════════════
   11. TESTIMONIALS — CARD LIFT + BORDER GLOW
   ════════════════════════════════════════════════ */
.testimonials-item {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease !important;
  border-radius: 20px !important;
  position: relative;
  overflow: hidden;
}
.testimonials-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(222,23,23,0.04), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}
.testimonials-item:hover::before {
  left: 160%;
}
.testimonials-item:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-10px) scale(1.02) !important;
  box-shadow: 0 30px 70px rgba(0,0,0,0.14), 0 0 0 1px rgba(222,23,23,0.15) !important;
}

/* ════════════════════════════════════════════════
   12. AGENTS TEASER — PORTRAIT 3D STACK
   ════════════════════════════════════════════════ */
.agents-teaser-portraits .portrait {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease, z-index 0s !important;
  will-change: transform;
}
.agents-teaser-portraits .portrait:nth-child(3) {
  animation: portraitFloat 5s ease-in-out infinite;
}
@keyframes portraitFloat {
  0%,100% { transform: rotate(0deg) translateY(0); }
  50%      { transform: rotate(0deg) translateY(-12px); }
}
.agents-teaser-portraits:hover .portrait:nth-child(1) {
  transform: rotate(-8deg) translateX(-15px) translateY(-5px) scale(1.04) !important;
}
.agents-teaser-portraits:hover .portrait:nth-child(2) {
  transform: rotate(-3deg) translateX(-8px) translateY(-10px) scale(1.04) !important;
}
.agents-teaser-portraits:hover .portrait:nth-child(3) {
  transform: rotate(0deg) translateY(-18px) scale(1.08) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5) !important;
  z-index: 10 !important;
}
.agents-teaser-portraits:hover .portrait:nth-child(4) {
  transform: rotate(3deg) translateX(8px) translateY(-10px) scale(1.04) !important;
}
.agents-teaser-portraits:hover .portrait:nth-child(5) {
  transform: rotate(8deg) translateX(15px) translateY(-5px) scale(1.04) !important;
}

/* Agents teaser ambient glow */
/* agents-teaser red glow removed */

/* ════════════════════════════════════════════════
   13. PARTNER LOGOS — 3D HOVER
   ════════════════════════════════════════════════ */
.flat-brand .img-fluids {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), filter 0.4s ease, box-shadow 0.4s ease !important;
  cursor: pointer;
}
.flat-brand .img-fluids:hover {
  transform: perspective(500px) rotateY(-15deg) rotateX(5deg) scale(1.15) translateY(-6px) !important;
  filter: grayscale(0%) opacity(1) drop-shadow(0 8px 24px rgba(222,23,23,0.3)) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ════════════════════════════════════════════════
   14. DEVELOPER PAGE — BANNER HERO 3D
   ════════════════════════════════════════════════ */
.mybannersection {
  transform-style: preserve-3d;
  overflow: hidden;
}
.mybannersection img {
  transition: transform 12s ease !important;
  transform: scale(1.05);
}
.mybannersection:hover img {
  transform: scale(1.12) !important;
}
.mybannersection .overlay {
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(222,23,23,0.08) 100%
  ) !important;
  transition: background 0.6s ease;
}

/* Developer banner title 3D entrance */
.myslider-content h1 {
  transform-origin: left center;
  animation: devTitleIn 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s both;
  text-shadow:
    0 0 80px rgba(222,23,23,0.4),
    0 4px 20px rgba(0,0,0,0.6),
    0 0 200px rgba(222,23,23,0.1);
}
@keyframes devTitleIn {
  0%   { opacity: 0; transform: perspective(800px) rotateX(35deg) translateY(60px) translateZ(-120px); }
  60%  { opacity: 1; transform: perspective(800px) rotateX(-3deg) translateY(-5px) translateZ(10px); }
  100% { opacity: 1; transform: perspective(800px) rotateX(0) translateY(0) translateZ(0); }
}

.mytext-1 {
  animation: devSubIn 1s cubic-bezier(0.23,1,0.32,1) 0.9s both;
}
@keyframes devSubIn {
  0%   { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Developer banner — animated red accent line */
.myslider-content::before {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  animation: devLine 1.5s cubic-bezier(0.23,1,0.32,1) 1.4s forwards;
}
@keyframes devLine {
  to { width: 320px; }
}

/* Developer banner particle orbs */
.myslider-content::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(222,23,23,0.06) 0%, transparent 65%);
  border-radius: 50%;
  animation: devOrb 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes devOrb {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.4); opacity: 1; }
}

/* ════════════════════════════════════════════════
   15. DEVELOPER — PROPERTY CARDS 3D PREMIUM
   ════════════════════════════════════════════════ */
.pdf5 .col-md-4 img,
.pdf5 .col-md-6 img,
.pdf5 img.boxshadowimg {
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease !important;
  border-radius: 16px;
}
.pdf5 .col-md-4:hover img,
.pdf5 .col-md-6:hover img {
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg) scale(1.04) translateY(-8px) !important;
  box-shadow:
    rgba(50,50,93,0.3) 0px 50px 100px -20px,
    rgba(0,0,0,0.4) 0px 30px 60px -30px,
    0 0 0 1px rgba(222,23,23,0.15) !important;
}

/* Developer section headings animated underline */
.pdf5 h2,
.pdf5 h3 {
  position: relative;
  display: inline-block;
}
.pdf5 h2::after,
.pdf5 h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 0.6s cubic-bezier(0.23,1,0.32,1);
  border-radius: 2px;
}
.pdf5 h2:hover::after,
.pdf5 h3:hover::after { width: 100%; }

/* ════════════════════════════════════════════════
   16. DEVELOPER — PROPERTY IMAGE GALLERY TILT
   ════════════════════════════════════════════════ */
.pdf5 .row .col-md-4,
.pdf5 .row .col-md-6 {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.pdf5 .row .col-md-4:hover,
.pdf5 .row .col-md-6:hover {
  transform: translateY(-5px);
}

/* ════════════════════════════════════════════════
   17. DEVELOPER — SECTION ENTRANCE ANIMATIONS
   ════════════════════════════════════════════════ */
.dev-section-reveal {
  opacity: 0;
  transform: translateY(40px) perspective(800px) rotateX(12deg);
  transition:
    opacity 0.9s cubic-bezier(0.23,1,0.32,1),
    transform 0.9s cubic-bezier(0.23,1,0.32,1);
}
.dev-section-reveal.in-view {
  opacity: 1;
  transform: translateY(0) perspective(800px) rotateX(0deg);
}

/* ════════════════════════════════════════════════
   18. SCROLL PROGRESS BAR — removed
   ════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════
   19. FLOATING CONTACT BUBBLE
   ════════════════════════════════════════════════ */
#float-cta {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
#float-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#float-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(222,23,23,0.5), 0 0 0 0 rgba(222,23,23,0.4);
  animation: floatBtnPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s ease;
}
#float-cta a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 38px rgba(222,23,23,0.65), 0 0 0 8px rgba(222,23,23,0.08);
  color: #fff;
  text-decoration: none;
}
@keyframes floatBtnPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(222,23,23,0.5), 0 0 0 0 rgba(222,23,23,0.4); }
  50%      { box-shadow: 0 8px 28px rgba(222,23,23,0.5), 0 0 0 10px rgba(222,23,23,0); }
}

/* ════════════════════════════════════════════════
   20. SECTION HEADER UNDERLINE — ANIMATED
   ════════════════════════════════════════════════ */
.heading-section h2 {
  position: relative;
  display: inline-block;
}
.heading-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.23,1,0.32,1);
}
.heading-section h2.h2-animated::after { width: 120px; }

/* ════════════════════════════════════════════════
   21. BEST PROPERTIES — IMAGE 3D HOVER
   ════════════════════════════════════════════════ */
.best-properties .swiper-slide img,
.best-properties .imgheight,
.best-properties .box-dream img {
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1) !important;
  border-radius: 12px;
}
.best-properties .swiper-slide:hover img {
  transform: scale(1.05) perspective(800px) rotateY(-4deg) !important;
}

/* ════════════════════════════════════════════════
   22. FORM SECTION — GLOW ON FOCUS
   ════════════════════════════════════════════════ */
.finest-selection iframe {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.finest-selection iframe:hover {
  box-shadow: 0 30px 80px rgba(222,23,23,0.12), 0 0 0 2px rgba(222,23,23,0.12);
  transform: translateY(-4px);
}

/* ════════════════════════════════════════════════
   23. FOOTER — LINK HOVER 3D
   ════════════════════════════════════════════════ */
footer a {
  transition: color 0.3s ease, transform 0.3s ease !important;
  display: inline-block;
}
footer a:hover {
  color: var(--red) !important;
  transform: translateX(4px);
}

/* ════════════════════════════════════════════════
   24. HEADER NAV — 3D DROPDOWN
   ════════════════════════════════════════════════ */
.main-menu .navigation > li > ul {
  transform-origin: top center;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), opacity 0.4s ease !important;
  transform: perspective(600px) rotateX(-12deg) translateY(-8px);
  opacity: 0;
  pointer-events: none;
}
.main-menu .navigation > li:hover > ul,
.main-menu .navigation > li.active > ul {
  transform: perspective(600px) rotateX(0deg) translateY(0px) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.main-menu .navigation > li > ul li a {
  transition: color 0.25s ease, transform 0.25s ease, padding-left 0.3s ease !important;
}
.main-menu .navigation > li > ul li a:hover {
  color: var(--red) !important;
  padding-left: 8px !important;
  transform: translateX(4px);
}

/* ════════════════════════════════════════════════
   25. LOGO — HOVER PULSE
   ════════════════════════════════════════════════ */
#site-logo img {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), filter 0.3s ease !important;
}
#site-logo:hover img {
  transform: scale(1.06) translateZ(5px);
  filter: drop-shadow(0 4px 12px rgba(222,23,23,0.3));
}

/* ════════════════════════════════════════════════
   26. DEVELOPER PAGE — LUXURY RIBBON
   ════════════════════════════════════════════════ */
.dev-ribbon {
  background: linear-gradient(135deg, #0f172a 0%, #1e1e2e 100%);
  border-top: 1px solid rgba(222,23,23,0.2);
  border-bottom: 1px solid rgba(222,23,23,0.2);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.dev-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(222,23,23,0.05) 50%, transparent 100%);
  animation: ribbonScan 4s ease-in-out infinite;
}
@keyframes ribbonScan {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.dev-ribbon-track {
  display: inline-flex;
  animation: ribbonScroll 25s linear infinite;
  white-space: nowrap;
}
.dev-ribbon-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 40px;
}
.dev-ribbon-dot {
  color: var(--red);
  margin: 0 8px;
}
@keyframes ribbonScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   27. BACK TO TOP — 3D BUTTON
   ════════════════════════════════════════════════ */
.progress-wrap {
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s ease !important;
}
.progress-wrap:hover {
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 12px 30px rgba(222,23,23,0.35) !important;
}

/* ════════════════════════════════════════════════
   28. CTA BUTTON — MAGNETIC 3D
   ════════════════════════════════════════════════ */
.tf-button-primary,
.teaser-cta {
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s ease !important;
  position: relative;
  overflow: hidden;
}
.tf-button-primary::after,
.teaser-cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -65%;
  width: 50%; height: 200%;
  background: rgba(255,255,255,0.14);
  transform: skewX(-20deg);
  animation: ctaShine 4s ease-in-out 2s infinite;
}
@keyframes ctaShine {
  0%   { left: -65%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}
.tf-button-primary:hover,
.teaser-cta:hover {
  transform: perspective(500px) rotateY(-8deg) translateY(-4px) scale(1.04) !important;
  box-shadow: -6px 16px 40px rgba(0,0,0,0.25), 0 0 0 2px rgba(255,255,255,0.1) !important;
}

/* ════════════════════════════════════════════════
   29. ANIMATED SECTION DIVIDERS — removed
   ════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════
   30. MOBILE OPTIMISATION
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .pdf5 .col-md-4:hover img,
  .pdf5 .col-md-6:hover img {
    transform: none !important;
  }
  .perfect-home .image:hover {
    transform: none !important;
  }
  .testimonials-item:hover {
    transform: translateY(-6px) scale(1.01) !important;
  }
  #float-cta { bottom: 80px; right: 16px; }
  .myslider-content::before { display: none; }
}
