/* ============================================================
   White Whale Marine Services - Premium Style Sheet v2
   ============================================================ */

/* Google Fonts loaded via <link> in HTML for better performance */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.7;
  color: #333; background: #000 url('../images/bg.webp') center/cover fixed;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s ease; }
ul { list-style: none; }
.container { max-width: 1212px; margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

:root {
  --primary: #34ccff;
  --primary-dark: #0099cc;
  --primary-rgb: 52, 204, 255;
  --dark: #000;
  --dark2: #1a1a2e;
  --dark3: #0f0f1a;
  --light: #fff;
  --gray: #f0f0f0;
  --text: #333;
  --gradient-start: #0076ff;
  --gradient-end: #1fd87c;
  --header-h: 99px;
  --topbar-h: 40px;
  --total-header: 139px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --shadow-primary: 0 4px 20px rgba(var(--primary-rgb), .3);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), .4); } 50% { box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes blink { 50% { border-color: transparent; } }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: all .7s cubic-bezier(.25,.46,.45,.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all .7s cubic-bezier(.25,.46,.45,.94); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all .7s cubic-bezier(.25,.46,.45,.94); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: all .7s cubic-bezier(.25,.46,.45,.94); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   TOP INFO BAR
   ============================================================ */
#topbar {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  height: var(--topbar-h); line-height: var(--topbar-h); color: var(--light);
  font-size: 13px; position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
#topbar .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
#topbar .info-line span { margin-right: 20px; display: inline-flex; align-items: center; white-space: nowrap; }
#topbar .info-line i { margin-right: 6px; font-size: 12px; }
#topbar .social a {
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 8px; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.15); font-size: 13px; color: var(--light);
  transition: all .3s;
}
#topbar .social a:hover { background: rgba(255,255,255,.3); transform: translateY(-1px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed; top: var(--topbar-h); left: 0; right: 0;
  height: var(--header-h); background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  z-index: 1000; border-bottom: 1px solid rgba(0,0,0,.08);
  transition: all .3s;
}
#header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.12); border-bottom-color: rgba(52,204,255,.15); }
#header .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
#header .logo { display: flex; align-items: center; gap: 12px; }
#header .logo img { height: 48px; width: auto; transition: transform .3s; }
#header .logo:hover img { transform: scale(1.05); }
#header .logo span {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700;
  color: var(--dark); letter-spacing: .5px;
}

#nav { display: flex; align-items: center; }
#nav > li { position: relative; }
#nav > li > a {
  display: block; padding: 0 16px; line-height: var(--header-h); height: var(--header-h);
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: var(--dark); position: relative;
}
#nav > li > a:hover, #nav > li.active > a { color: var(--primary); }
#nav > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 3px; background: var(--primary); transform: scaleX(0);
  transition: transform .3s cubic-bezier(.25,.46,.45,.94);
}
#nav > li > a:hover::after, #nav > li.active > a::after { transform: scaleX(1); }
#nav .dropdown {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--light); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all .3s cubic-bezier(.25,.46,.45,.94);
  z-index: 999; box-shadow: var(--shadow-lg); border-radius: 0 0 8px 8px;
  overflow: hidden;
}
#nav li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
#nav .dropdown li a {
  display: block; padding: 14px 22px; font-size: 14px; color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.05); position: relative;
  padding-left: 22px; transition: all .3s;
}
#nav .dropdown li:last-child a { border-bottom: none; }
#nav .dropdown li a:hover { background: var(--dark2); color: var(--primary); padding-left: 32px; }
#nav .nav-phone { display: none; }
#nav .dropdown li a::before {
  content: '›'; position: absolute; left: 12px; font-size: 18px; opacity: 0; transition: all .3s;
}
#nav .dropdown li a:hover::before { opacity: 1; left: 14px; color: var(--primary); }

.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; padding: 5px; position: relative; z-index: 1001; }
.menu-toggle span { width: 28px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all .3s; transform-origin: center; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   MAIN
   ============================================================ */
#main { background: var(--light); padding-top: var(--total-header); min-height: 100vh; }
#main > .container { padding-top: 40px; padding-bottom: 40px; }
#main > .container.full { padding: 0; max-width: 100%; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider { position: relative; overflow: hidden; }
.swiper-slide { position: relative; height: 650px; }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 8s ease; }
.swiper-slide-active img { transform: scale(1.08); }
.swiper-slide .caption {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,.4) 100%);
  color: var(--light); padding: 20px;
}
.swiper-slide .caption::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,.3) 100%);
  pointer-events: none;
}

.swiper-slide .caption h1 {
  font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900;
  margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(30px);
  transition: all .8s cubic-bezier(.25,.46,.45,.94) .3s;
}
.swiper-slide-active .caption h1 { opacity: 1; transform: translateY(0); }
.swiper-slide .caption p {
  font-size: 18px; max-width: 600px; margin-bottom: 30px;
  opacity: 0; transform: translateY(20px);
  transition: all .8s cubic-bezier(.25,.46,.45,.94) .5s;
}
.swiper-slide-active .caption p { opacity: 1; transform: translateY(0); }
.swiper-slide .caption .btn {
  display: inline-block; padding: 16px 48px; border: 2px solid var(--light);
  color: var(--light); font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  font-size: 13px; transition: all .4s; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: all .8s cubic-bezier(.25,.46,.45,.94) .7s, background .4s, border-color .4s, color .4s;
}
.swiper-slide-active .caption .btn { opacity: 1; transform: translateY(0); }
.swiper-slide .caption .btn::before {
  content: ''; position: absolute; inset: 0; background: var(--primary);
  transform: translateX(-100%); transition: transform .4s; z-index: -1;
}
.swiper-slide .caption .btn:hover { border-color: var(--primary); color: var(--light); }
.swiper-slide .caption .btn:hover::before { transform: translateX(0); }
.swiper-slide .caption .btn::after {
  content: ' →'; display: inline-block; transition: transform .3s; margin-left: 4px;
}
.swiper-slide .caption .btn:hover::after { transform: translateX(4px); }

.swiper-pagination { bottom: 30px !important; }
.swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(255,255,255,.5); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--primary) !important; width: 32px; border-radius: 6px; }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 0 auto 16px; width: 100px;
}
.section-divider span { flex: 1; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.section-divider i { color: var(--primary); font-size: 18px; animation: float 3s ease-in-out infinite; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading h2 {
  font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700;
  color: var(--dark); position: relative; display: inline-block;
}
.section-heading h2::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--primary); margin: 12px auto 0; border-radius: 2px;
}
.section-heading p { color: #888; max-width: 600px; margin: 12px auto 0; font-size: 16px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.about-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.about-section h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; margin-bottom: 24px; }
.about-section .accent-line {
  width: 60px; height: 3px; background: var(--primary); margin: 0 auto 30px; border-radius: 2px;
}
.about-section p {
  max-width: 800px; margin: 0 auto 35px; font-size: 16.5px;
  color: #666; line-height: 1.9;
}
.about-lead { font-size: 18px; line-height: 1.9; text-align: center; max-width: 900px; margin: 0 auto; }
.about-section .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 40px; color: var(--light); background: linear-gradient(135deg, var(--dark), #333);
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: 12px; transition: all .4s; border: none; position: relative; overflow: hidden;
}
.about-section .btn::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0; transition: opacity .4s;
}
.about-section .btn:hover::before { opacity: 1; }
.about-section .btn span { position: relative; z-index: 1; }
.about-section .btn i { position: relative; z-index: 1; font-size: 14px; transition: transform .3s; }
.about-section .btn:hover i { transform: translateX(4px); }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-section { padding: 0 0 40px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.service-card {
  position: relative; min-height: 500px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 45px 40px; color: var(--light);
  background-size: cover; background-position: center; overflow: hidden;
  text-decoration: none;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.88) 100%);
  transition: all .5s cubic-bezier(.25,.46,.45,.94); z-index: 1;
}
.service-card:hover::before { background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.95) 100%); }
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.2), transparent 60%);
  opacity: 0; transition: opacity .5s cubic-bezier(.25,.46,.45,.94); z-index: 1;
}
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 2; }
.service-card .icon {
  font-size: 52px; margin-bottom: 18px; color: var(--light);
  display: inline-block; transition: transform .4s;
}
.service-card:hover .icon { transform: translateY(-5px); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 30px; margin-bottom: 12px; font-weight: 700; }
.service-card p {
  font-size: 14px; line-height: 1.7; margin-bottom: 22px; opacity: 0; 
  transform: translateY(10px); transition: all .4s .1s;
}
.service-card:hover p { opacity: .9; transform: translateY(0); }
.service-card .btn-link {
  color: var(--light); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 12px; display: inline-flex; align-items: center; gap: 6px;
  opacity: .7; transition: all .4s;
}
.service-card:hover .btn-link { opacity: 1; gap: 12px; }
.service-card .btn-link i { font-size: 14px; transition: transform .3s; }
.service-card:hover .btn-link i { transform: translateX(4px); }

.service-card .card-number {
  position: absolute; top: 30px; right: 30px; font-size: 72px;
  font-weight: 900; color: rgba(255,255,255,.06); line-height: 1;
  font-family: 'Playfair Display', serif; z-index: 2;
}

/* ============================================================
   DIVIDERS
   ============================================================ */
/* Services page intro */
.services-intro {
  display: flex; gap: 50px; align-items: center; padding: 60px 0 20px;
}
.services-intro-text p { font-size: 16.5px; line-height: 1.9; color: #555; max-width: 650px; }
.services-intro-stats {
  display: flex; gap: 30px; flex-shrink: 0;
}
.intro-stat { text-align: center; }
.intro-stat-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 900; color: var(--primary); line-height: 1.1;
}
.intro-stat-label {
  display: block; font-size: 12px; text-transform: uppercase;
  letter-spacing: 1px; color: #999; margin-top: 4px; font-weight: 600;
}

/* Services page grid (spaced) */
.services-grid-page { gap: 24px; margin-top: 30px; }
.services-grid-page .service-card { min-height: 440px; padding: 35px 35px; border-radius: 12px; }
.services-grid-page .service-card p { opacity: .9; transform: none; }
.services-grid-page .service-card .card-number { font-size: 60px; }
.services-grid-page .service-card h3 { font-size: 26px; }

/* Services features */
.services-features-section {
  background: var(--gray); padding: 80px 0; margin-top: 60px;
}
.services-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.services-feature {
  background: var(--light); padding: 36px 28px; border-radius: 14px;
  text-align: center; transition: all .4s; border: 1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow-sm);
}
.services-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.services-feature .sf-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.1), rgba(var(--primary-rgb),.05));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--primary); transition: all .4s;
}
.services-feature:hover .sf-icon { background: var(--primary); color: var(--light); transform: scale(1.1); }
.services-feature h3 { font-size: 17px; margin-bottom: 10px; color: var(--dark); font-weight: 700; }
.services-feature p { font-size: 14px; color: #888; line-height: 1.7; }

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.services-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb),.08), transparent 70%);
}
.services-cta .container { position: relative; z-index: 1; }
.services-cta h2 {
  font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700;
  color: var(--light); margin-bottom: 16px;
}
.services-cta p { color: rgba(255,255,255,.65); font-size: 18px; margin-bottom: 36px; }
.services-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 50px; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--light); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 13px; border-radius: 8px;
  transition: all .4s;
}
.services-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,118,255,.35); gap: 14px; }
.services-cta-btn i { font-size: 16px; transition: transform .3s; }
.services-cta-btn:hover i { transform: translateX(4px); }

.section-divider-wave {
  width: 100%; overflow: hidden; line-height: 0; margin-bottom: -2px;
}
.section-divider-wave svg { width: 100%; height: 60px; }

/* ============================================================
   PAGE TITLE
   ============================================================ */
.breadcrumbs {
  padding: 12px 0; font-size: 13px; color: #999; background: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.breadcrumbs .container { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--primary); font-weight: 500; }
.breadcrumbs a:hover { color: var(--primary-dark); }
.breadcrumbs .sep { color: #ccc; font-size: 16px; }
.breadcrumbs .current { color: #888; }

.page-title {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 50px 0; text-align: center; color: var(--light);
  position: relative; overflow: hidden;
}
.page-title::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.page-title::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(var(--primary-rgb),.08), transparent 70%);
  pointer-events: none;
}
.page-title h1 {
  font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900;
  position: relative; z-index: 1;
}
.page-title p { color: rgba(255,255,255,.65); margin-top: 8px; font-size: 16px; position: relative; z-index: 1; }

/* ============================================================
   CONTENT PAGES
   ============================================================ */
.content-page { padding: 70px 0; }
.content-page h2 {
  font-family: 'Playfair Display', serif; font-size: 34px; margin-bottom: 24px;
  position: relative; padding-bottom: 16px;
}
.content-page h2::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 50px;
  height: 3px; background: var(--primary); border-radius: 2px;
}
.content-page h3 { font-size: 24px; margin-bottom: 16px; color: var(--primary); margin-top: 30px; }
.content-page p { margin-bottom: 20px; line-height: 1.9; color: #555; font-size: 15.5px; }
.content-page ul { margin-bottom: 24px; padding-left: 0; }
.content-page ul li {
  position: relative; padding: 8px 0 8px 28px; margin-bottom: 4px; color: #555;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.content-page ul li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--primary); font-weight: 700; font-size: 16px;
}
.content-page img.page-banner {
  width: 100%; max-height: 420px; object-fit: cover; margin-bottom: 35px;
  border-radius: 12px; box-shadow: var(--shadow-md);
}

/* Service list items */
.service-list-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; background: #f8f9fa; border-radius: 8px;
  border-left: 4px solid var(--primary); transition: all .3s;
}
.service-list-item:hover { background: var(--light); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.service-list-item i { color: var(--primary); font-size: 18px; width: 24px; text-align: center; }
.service-list-item span { font-size: 14.5px; color: #444; }

/* ============================================================
   STATS COUNTERS
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 30px;
  margin: 50px 0; text-align: center;
}
.stat {
  padding: 40px 30px; background: linear-gradient(135deg, #f8f9fa, #fff);
  border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: all .4s; border: 1px solid rgba(0,0,0,.04);
  position: relative; overflow: hidden;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0); transition: transform .4s;
}
.stat:hover::after { transform: scaleX(1); }
.stat .icon { font-size: 42px; color: var(--primary); margin-bottom: 12px; }
.stat .number { font-size: 52px; font-weight: 900; color: var(--dark); line-height: 1.2; font-family: 'Playfair Display', serif; }
.stat .label { color: #888; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; font-weight: 600; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 50px 0; }
.feature {
  text-align: center; padding: 32px 24px; border-radius: 12px;
  background: #f8f9fa; transition: all .4s; border: 1px solid rgba(0,0,0,.04);
}
.feature:hover { background: var(--light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature .icon { font-size: 38px; color: var(--primary); margin-bottom: 12px; }
.feature h4 { font-size: 18px; margin-bottom: 4px; color: var(--dark); }

/* ============================================================
   MAP
   ============================================================ */
.map-section { width: 100%; height: 380px; position: relative; }
.map-section iframe { width: 100%; height: 100%; border: 0; }
.map-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 50px 0; }
.contact-card {
  text-align: center; padding: 40px 24px;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: all .4s; border: 1px solid rgba(0,0,0,.04);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0); transition: transform .4s;
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card .card-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.1), rgba(var(--primary-rgb),.05));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.contact-card .card-icon i { font-size: 24px; color: var(--primary); }
.contact-card h4 { font-size: 20px; margin-bottom: 16px; color: var(--dark); font-weight: 700; }
.contact-card p { font-size: 14px; color: #666; margin-bottom: 6px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.contact-card a { color: var(--primary); font-weight: 600; }
.contact-card a:hover { color: var(--primary-dark); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-form-wrap .section-heading-left { text-align: left; margin-bottom: 24px; }
.contact-form-wrap .section-heading-left h2 { font-size: 28px; }
.contact-form-wrap .operator-col { text-align: center; align-self: center; }
.contact-form-wrap .operator-col img { max-width: 380px; margin: 0 auto; animation: float 4s ease-in-out infinite; }
@media (max-width: 768px) {
  .contact-form-wrap .form-row { grid-template-columns: 1fr; }
}
/* ============================================================
   HOMEPAGE STATS (4 columns)
   ============================================================ */
.home-stats { padding: 30px 0 10px; }
.stats-4 { grid-template-columns: repeat(4, 1fr) !important; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose-section { padding: 0 0 60px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--light); padding: 36px 24px; border-radius: 14px;
  text-align: center; transition: all .4s; border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0); transition: transform .4s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.1), rgba(var(--primary-rgb),.05));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--primary); transition: all .4s;
}
.why-card:hover .why-icon { background: var(--primary); color: var(--light); transform: scale(1.1) rotateY(180deg); }
.why-card h4 { font-size: 17px; margin-bottom: 10px; color: var(--dark); font-weight: 700; }
.why-card p { font-size: 14px; color: #888; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 50px 0; position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb),.06), transparent 70%);
  pointer-events: none;
}
.testimonials-section .section-heading { margin-bottom: 32px; }
.testimonials-section .section-heading h2 { color: var(--light); }
.testimonials-section .section-heading h2::after { background: var(--primary); }
.testimonials-section .section-heading p { color: rgba(255,255,255,.55); }
.testimonial-slider { max-width: 800px; margin: 0 auto; padding-bottom: 40px; }
.testimonial-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 32px 28px; text-align: center; color: var(--light);
  backdrop-filter: blur(8px);
}
.testimonial-card .stars { font-size: 22px; color: #ffc107; margin-bottom: 18px; letter-spacing: 4px; }
.testimonial-card p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.85); margin-bottom: 24px; font-style: italic; }
.testimonial-card p::before { content: '\201C'; font-size: 40px; color: var(--primary); font-family: serif; line-height: 0; margin-right: 4px; }
.testimonial-author strong { display: block; font-size: 15px; color: var(--primary); font-weight: 700; }
.testimonial-author span { display: block; font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; }
.testimonial-pagination { bottom: 0 !important; }
.testimonial-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.3); }
.testimonial-pagination .swiper-pagination-bullet-active { background: var(--primary) !important; width: 32px; border-radius: 6px; }

/* ============================================================
   PORTS COVERAGE
   ============================================================ */
.ports-section { padding: 0 0 60px; }
.ports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.port-card {
  background: var(--gray); padding: 40px 24px; border-radius: 14px;
  text-align: center; transition: all .4s; border: 1px solid rgba(0,0,0,.04);
  position: relative; overflow: hidden;
}
.port-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0); transition: transform .4s;
}
.port-card:hover::before { transform: scaleX(1); }
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--light); }
.port-icon { font-size: 40px; color: var(--primary); margin-bottom: 14px; }
.port-card h3 { font-size: 20px; color: var(--dark); font-weight: 700; margin-bottom: 6px; }
.port-card p { font-size: 13px; color: #888; }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs-section {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  padding: 60px 0; border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.certs-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cert-item {
  background: var(--light); padding: 28px 16px; border-radius: 12px;
  text-align: center; transition: all .4s; border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
}
.cert-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.cert-item i { font-size: 32px; color: var(--primary); margin-bottom: 10px; display: block; }
.cert-item span { font-size: 13px; font-weight: 600; color: var(--text); display: block; line-height: 1.3; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb),.08), transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700;
  color: var(--light); margin-bottom: 14px;
}
.cta-section p { color: rgba(255,255,255,.6); font-size: 17px; margin-bottom: 32px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 50px; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--light); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 13px; border-radius: 8px;
  transition: all .4s;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,118,255,.35); gap: 14px; }
.cta-btn i { font-size: 16px; transition: transform .3s; }
.cta-btn:hover i { transform: translateX(4px); }

.silhouette-wrap { margin-top: 40px; }
.silhouette-wrap img { width: 100%; opacity: .6; }
.form-group { position: relative; margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px;
  color: var(--dark); text-transform: uppercase; letter-spacing: .5px;
}
.required-star { color: var(--primary); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 2px solid #e8e8e8;
  font-size: 15px; font-family: inherit; transition: all .3s;
  background: #fafafa; border-radius: 8px;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); background: var(--light);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.1); outline: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea { min-height: 160px; resize: vertical; }
.btn-submit {
  padding: 16px 48px; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--light); border: none; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 12px; cursor: pointer; transition: all .4s;
  border-radius: 8px; display: inline-flex; align-items: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,118,255,.35); }
.btn-submit i { font-size: 16px; }
.form-msg { margin-top: 16px; font-size: 14px; padding: 12px 16px; border-radius: 8px; display: none; }
.form-msg.show { display: block; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid a {
  position: relative; display: block; overflow: hidden; border-radius: 10px;
  box-shadow: var(--shadow-sm); transition: all .4s;
}
.gallery-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-grid a img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.gallery-grid a:hover img { transform: scale(1.12); }
.gallery-grid a .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.8), rgba(var(--primary-rgb),.4));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all .4s;
}
.gallery-grid a:hover .overlay { opacity: 1; }
.gallery-grid a .overlay span {
  color: var(--light); font-size: 36px; transform: scale(.5);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.gallery-grid a:hover .overlay span { transform: scale(1); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer-wrapper { background: var(--dark3); position: relative; }
#footer-wrapper::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
#footer-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(var(--primary-rgb),.04), transparent 60%);
  pointer-events: none;
}
#footer-widgets {
  padding: 60px 0; display: grid; grid-template-columns: repeat(4,1fr);
  gap: 40px; color: var(--light);
}
#footer-widgets h4 {
  font-size: 15px; font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
  position: relative;
}
#footer-widgets h4::after {
  content: ''; display: block; width: 30px; height: 2px;
  background: var(--primary); margin-top: 8px; border-radius: 2px;
}
#footer-widgets p, #footer-widgets a, #footer-widgets li { color: rgba(255,255,255,.65); font-size: 14px; }
#footer-widgets a { color: var(--primary); }
#footer-widgets a:hover { color: var(--light); }
#footer-widgets ul li { margin-bottom: 10px; }
#footer-widgets ul li a { display: inline-flex; align-items: center; gap: 6px; }
#footer-widgets ul li a::before { content: '›'; font-size: 18px; transition: transform .3s; }
#footer-widgets ul li a:hover::before { transform: translateX(4px); }
#footer-widgets .footer-logo { margin-bottom: 18px; max-width: 140px; }
#footer-widgets .footer-desc { color: rgba(255,255,255,.55); line-height: 1.8; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0; text-align: center;
}
.footer-legal a {
  color: rgba(255,255,255,.5); font-size: 13px;
  margin: 0 10px; transition: color .3s;
}
.footer-legal a:hover { color: var(--primary); }
.footer-legal .sep { color: rgba(255,255,255,.15); font-size: 12px; }

#footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; display: flex; justify-content: space-between;
  align-items: center; color: var(--light); font-size: 13px;
}
#footer-bar a { color: var(--primary); }
#footer-bar .social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--light);
  margin-left: 8px; font-size: 15px; transition: all .3s;
}
#footer-bar .social a:hover { background: var(--primary); color: var(--light); transform: translateY(-2px); }

/* ============================================================
   WHATSAPP
   ============================================================ */
#whatsapp-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 65px; height: 65px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s; animation: pulse-glow 2s infinite;
}
#whatsapp-btn:hover { transform: scale(1.1); animation: none; }
#whatsapp-btn svg { width: 32px; height: 32px; fill: var(--light); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#to-top {
  position: fixed; bottom: 98px; right: 20px; z-index: 999;
  width: 46px; height: 46px; background: var(--dark2);
  color: var(--light); border: none; font-size: 18px;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: all .4s; display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
#to-top.visible { opacity: 1; visibility: visible; }
#to-top:hover { background: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .swiper-slide .caption h1 { font-size: 42px; }
}

@media (max-width: 1024px) {
  :root { --total-header: 130px; }
  #footer-widgets { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  #topbar .info-line span { margin-right: 12px; font-size: 12px; }
  .swiper-slide { height: 500px; }
  .services-intro { flex-direction: column; text-align: center; gap: 30px; }
  .services-intro-text p { max-width: 100%; }
  .services-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; --total-header: 0px; }
  #topbar { position: relative; height: auto; line-height: 1.5; padding: 8px 0; z-index: auto; }
  #topbar .container { flex-direction: column; gap: 6px; }
  #topbar .info-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
  #topbar .info-line span { margin-right: 0; font-size: 11px; white-space: normal; word-break: break-word; }
  #topbar .info-line span:last-child { display: none; }
  #topbar .social { display: none; }
  #header { position: sticky; top: 0; }
  #header .logo img { height: 36px; }
  #header .logo span { display: none; }
  .menu-toggle { display: flex; position: relative; z-index: 1002; }
  #nav {
    display: flex; position: fixed; top: 0; left: 100%; width: 280px;
    height: 100vh; background: var(--light); flex-direction: column;
    transition: left .4s cubic-bezier(.25,.46,.45,.94);
    padding-top: 80px; z-index: 999;
  }
  #nav.open { left: calc(100% - 280px); box-shadow: -4px 0 30px rgba(0,0,0,.15); }
  #nav > li { width: 100%; }
  #nav > li > a { line-height: 52px; height: 52px; padding: 0 24px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
  #nav > li > a::after { display: none; }
  #nav .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; min-width: auto; display: none; border-radius: 0;
  }
  #nav li.open-drop > .dropdown { display: block; }
  #nav .dropdown li a { padding-left: 40px; font-size: 13px; }
  #nav .dropdown li a:hover { padding-left: 48px; }

  /* Mobile phone block inside nav */
  #nav .nav-phone {
    margin-top: auto; padding: 24px; border-top: 1px solid #f0f0f0;
    display: flex; flex-direction: column; gap: 10px;
  }
  #nav .nav-phone a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 8px; font-weight: 600; font-size: 14px;
  }
  #nav .nav-phone a.call { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--light); }
  #nav .nav-phone a.whatsapp-mobile { background: #25d366; color: var(--light); }
  #nav .nav-phone a i { font-size: 16px; }

  /* Mobile overlay when menu is open */
  .menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.8); z-index: 998; opacity: 0; visibility: hidden; transition: all .4s; }
  .menu-overlay.active { opacity: 1; visibility: visible; }

  .swiper-slide { height: 420px; }
  .swiper-slide .caption h1 { font-size: 28px; }
  .swiper-slide .caption p { font-size: 15px; }
  .swiper-slide .caption .btn { padding: 12px 32px; font-size: 12px; }
  .swiper-slide .caption { background: linear-gradient(135deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 100%); }
  .swiper-slide .caption::before { height: 120px; }
  .about-section { padding: 60px 0; }
  .services-intro { flex-direction: column; text-align: center; gap: 24px; padding-top: 40px; }
  .services-intro-stats { gap: 20px; justify-content: center; }
  .intro-stat-num { font-size: 30px; }
  .services-features-section { padding: 50px 0; margin-top: 40px; }
  .services-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-cta { padding: 50px 0; }
  .services-cta h2 { font-size: 28px; }
  .services-cta-btn { padding: 14px 36px; }
  .about-section h2 { font-size: 30px; }
  .about-section p { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; padding: 30px; }
  .service-card .card-number { display: none; }
  .service-card h3 { font-size: 26px; }
  .service-card p { opacity: .9; transform: none; }
  .services-grid-page .service-card { min-height: 320px; padding: 28px; border-radius: 10px; }
  .stats { grid-template-columns: 1fr; gap: 16px; }
  .features { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid a img { height: 200px; }
  #footer-widgets { grid-template-columns: 1fr; }
  #footer-bar { flex-direction: column; gap: 12px; text-align: center; }
  .page-title h1 { font-size: 28px; }
  .content-page { padding: 40px 0; }
  .section-heading h2 { font-size: 30px; }
  .contact-form-wrap { gap: 30px; }
  .content-page h2 { font-size: 26px; }
  .stats .number { font-size: 40px; }

  .home-stats { padding: 10px 0 0; }
  .stats-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-choose-section { padding: 0 0 40px; }
  .why-card { padding: 24px 16px; }
  .testimonials-section { padding: 36px 0; }
  .testimonial-slider { max-width: 100%; }
  .testimonial-card { padding: 24px 18px; }
  .testimonial-card p { font-size: 14px; }
  .ports-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .port-card { padding: 28px 16px; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cert-item { padding: 20px 12px; }
  .cert-item i { font-size: 26px; }
  .cta-section { padding: 50px 0; }
  .cta-section h2 { font-size: 26px; }
  .cta-btn { padding: 14px 32px; font-size: 12px; }
  #whatsapp-btn { bottom: 20px; }
  #to-top { bottom: 80px; }
  .menu-toggle { display: flex; z-index: 1002; }
}

@media (max-width: 480px) {
  .swiper-slide { height: 340px; }
  .swiper-slide .caption h1 { font-size: 22px; }
  .swiper-slide .caption .btn { padding: 10px 24px; font-size: 11px; }
  .stats-4 { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .why-grid { grid-template-columns: 1fr; }
  .ports-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  #whatsapp-btn { width: 55px; height: 55px; }
  #whatsapp-btn svg { width: 28px; height: 28px; }
  #to-top { bottom: 85px; width: 40px; height: 40px; }
  .page-title { padding: 30px 0; }
  .page-title h1 { font-size: 24px; }
  .service-list-item { padding: 12px 16px; }
  .service-list-item span { font-size: 13px; }
}

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