/*---------------------------------------------------------------*/
/* Studio One Informatica — Custom CSS v2.0                      */
/* Stack: Bootstrap 5.3 · Swiper 11 · AOS · Font Awesome 6.5   */
/* Palette: #ff6c3a (orange) · #232c3b (navy) · #161d28 (black)*/
/* Author: rebuild 2025                                          */
/*---------------------------------------------------------------*/

/* ============================================================
   01 — CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  --clr-orange:      #ff6c3a;
  --clr-orange-lt:   #fd845b;
  --clr-orange-f58:  #F58220;
  --clr-navy:        #232c3b;
  --clr-navy-dk:     #161d28;
  --clr-navy-md:     #2d3a4e;
  --clr-gray-text:   #6a7483;
  --clr-gray-light:  #c6cad2;
  --clr-bg-alt:      #f9f9f9;
  --clr-white:       #ffffff;

  --font-black:  'black', 'Nunito', sans-serif;
  --font-bold:   'bold', 'Nunito', sans-serif;
  --font-reg:    'regular', 'Nunito', sans-serif;

  --header-h:    122px;
  --header-h-sm: 76px;
  --radius:      5px;
  --shadow-btn:  1px 1px 2px rgba(0,0,0,.2);
  --transition:  all 0.2s ease-out;
}

/* ============================================================
   02 — FONTS (Proxima Nova local + Nunito fallback via Google)
   ============================================================ */
@font-face {
  font-family: 'black';
  src: url('../fonts/proximanova-black-webfont.woff2') format('woff2'),
       url('../fonts/proximanova-black-webfont.woff')  format('woff'),
       url('../fonts/proximanova-black-webfont.ttf')   format('truetype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'bold';
  src: url('../fonts/proximanova-extrabold-webfont.woff2') format('woff2'),
       url('../fonts/proximanova-extrabold-webfont.woff')  format('woff'),
       url('../fonts/proximanova-extrabold-webfont.ttf')   format('truetype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'regular';
  src: url('../fonts/proximanova-regular-webfont.woff2') format('woff2'),
       url('../fonts/proximanova-regular-webfont.woff')  format('woff'),
       url('../fonts/proximanova-regular-webfont.ttf')   format('truetype');
  font-weight: normal; font-style: normal; font-display: swap;
}

/* ============================================================
   03 — RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-reg);
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-navy);
  overflow-y: scroll;
  overflow-x: hidden; /* previene scroll orizzontale su mobile */
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
  cursor: pointer;
}

b, strong { font-family: var(--font-bold); }

img { max-width: 100%; height: auto; }

ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   04 — LOADER
   ============================================================ */
@keyframes move1 {
  0%   { transform: translateX(0) scale(1); }
  50%  { transform: translateX(105px) scale(1); }
  75%  { transform: scale(1.25); }
  100% { z-index: 1; transform: translateX(0) scale(1); }
}
@keyframes move2 {
  0%   { transform: translateX(0); }
  25%  { transform: scale(1.25); }
  50%  { transform: translateX(-105px); }
  100% { transform: translateX(0); }
}

#loader-wrapper {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#loader-wrapper.hidden { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; position: relative; }

.loader-circles {
  display: flex; align-items: center; justify-content: center; gap: 0;
  height: 100px;
}
.circle1 {
  display: inline-block; background: var(--clr-orange-f58);
  height: 100px; width: 100px; border-radius: 50%;
  animation: move1 1.5s ease-in-out infinite;
}
.circle2 {
  display: inline-block; background: var(--clr-navy);
  height: 100px; width: 100px; border-radius: 50%;
  animation: move2 1.5s ease-in-out infinite;
  margin-left: -20px;
}
.loader-title {
  font-family: var(--font-black);
  font-size: 28px;
  color: var(--clr-navy);
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ============================================================
   05 — BUTTONS
   ============================================================ */
.btn-s1 {
  display: inline-block;
  padding: 14px 22px;
  background: var(--clr-orange);
  border: 1px solid var(--clr-orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-btn), inset 0 -2px var(--clr-orange-lt);
  color: var(--clr-white);
  font-family: var(--font-bold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 15px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-s1:hover {
  color: var(--clr-white);
  box-shadow: var(--shadow-btn), inset 0 -40px var(--clr-orange-lt);
}
.btn-s1 i { margin-right: 8px; font-size: 16px; vertical-align: middle; }

.btn-s1.type-dark {
  background: var(--clr-navy);
  border-color: var(--clr-navy);
  box-shadow: var(--shadow-btn), inset 0 -2px var(--clr-navy-md);
}
.btn-s1.type-dark:hover {
  box-shadow: var(--shadow-btn), inset 0 -40px var(--clr-navy-md);
}

/* ============================================================
   06 — HEADER
   ============================================================ */
#site-header {
  position: fixed; left: 0; top: 0; width: 100%; z-index: 100;
  height: var(--header-h);
  background: var(--clr-white);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  transition: height 0.15s ease-out;
  backface-visibility: hidden;
}
#site-header.reduced { height: 90px; }

.header-inner {
  display: flex; align-items: stretch;
  height: 100%;
}

/* Logo */
#logo-wrap {
  flex: 0 0 auto;
  width: 120px;
  display: flex; align-items: center;
  padding: 0 10px;
}
#logo-wrap a img { display: block; max-width: 109px; height: auto; }

/* Nav area */
.header-nav-wrap {
  flex: 1 1 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 0 10px;
}

/* Main nav */
#main-nav {
  display: flex; align-items: center; gap: 0;
  margin: 0; padding: 0;
  list-style: none;
}
#main-nav > li { position: relative; }
#main-nav > li > a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-reg);
  font-size: 14px;
  color: var(--clr-navy);
  transition: color 0.15s;
  white-space: nowrap;
}
#main-nav > li > a:hover,
#main-nav > li.active > a { color: var(--clr-orange); }

/* Chevron */
#main-nav > li > a .caret-icon {
  display: inline-block;
  font-size: 9px;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.2s;
}
#main-nav > li:hover > a .caret-icon { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  left: 0; top: 100%;
  background: var(--clr-navy);
  min-width: 190px;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  pointer-events: none;
  z-index: 200;
}
#main-nav > li:hover .nav-dropdown {
  max-height: 400px;
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: var(--clr-gray-light);
  transition: color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover,
.nav-dropdown a.active { color: var(--clr-orange); }

/* Header right */
.header-right {
  display: flex; align-items: center; gap: 12px;
  padding: 0 8px;
  font-size: 13px;
  color: var(--clr-navy);
  white-space: nowrap;
}
.header-right .phone-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.header-right .phone-main { font-family: var(--font-bold); font-size: 15px; color: var(--clr-navy); }
.header-right .phone-main:hover { color: var(--clr-orange); }
.header-right .phone-img img { height: 28px; width: auto; }
.header-right .phone-img a:hover { opacity: 0.8; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 32px; height: 22px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 16px;
  padding: 0;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 100%; height: 3px;
  background: var(--clr-navy);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 991px) {
  #site-header { height: var(--header-h-sm); }
  #site-header.reduced { height: var(--header-h-sm); }

  #logo-wrap { width: auto; padding: 0 16px; }

  .header-nav-wrap {
    position: fixed;
    left: 0; top: var(--header-h-sm);
    width: 100%; height: calc(100vh - var(--header-h-sm));
    background: rgba(255,255,255,0.97);
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 20px 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .header-nav-wrap.open { transform: translateX(0); }

  #main-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  #main-nav > li > a {
    font-size: 20px;
    padding: 12px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-dropdown {
    position: static;
    max-height: 0; opacity: 1;
    background: var(--clr-bg-alt);
    border-radius: 0;
    pointer-events: none;
  }
  #main-nav > li.mobile-open .nav-dropdown {
    max-height: 600px;
    pointer-events: all;
  }
  .nav-dropdown a {
    color: var(--clr-navy);
    padding: 10px 45px;
    font-size: 16px;
  }
  .nav-dropdown a:hover { color: var(--clr-orange); }

  .header-right { display: none; }

  .hamburger { display: flex; }
}

/* ============================================================
   07 — CONTENT WRAPPER
   ============================================================ */
#content-wrapper {
  padding-top: var(--header-h);
}
@media (max-width: 991px) {
  #content-wrapper { padding-top: var(--header-h-sm); }
}

/* ============================================================
   08 — SECTION BLOCKS (base)
   ============================================================ */
.section-block {
  padding: 80px 0 40px;
  background: var(--clr-white);
  position: relative;
}
.section-block:nth-child(even) { background: var(--clr-bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .title {
  font-family: var(--font-black);
  font-size: 40px;
  line-height: 1.1;
  color: var(--clr-navy);
  margin-bottom: 15px;
}
.section-header .title span { color: var(--clr-gray-text); }
.section-header .text {
  font-size: 18px;
  line-height: 1.55;
  color: var(--clr-gray-text);
  font-family: var(--font-reg);
}

.block-cta {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.block-cta .cta-desc {
  font-size: 22px;
  color: var(--clr-gray-light);
  line-height: 1.4;
  margin-bottom: 16px;
}
.block-cta .cta-desc a { color: var(--clr-white); }
.block-cta .cta-desc a:hover { color: var(--clr-orange); }

@media (max-width: 991px) {
  .section-block { padding: 40px 0 20px; }
  .section-header { margin-bottom: 30px; }
  .block-cta { padding-bottom: 30px; }
  .section-header .title { font-size: 28px; }
  .section-header .text  { font-size: 15px; }
}

/* ============================================================
   09 — HERO SLIDER (Swiper 11)
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 600px;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(22,29,40,0.82) 0%,
      rgba(22,29,40,0.45) 55%,
      rgba(22,29,40,0.15) 100%
    );
}
.hero-slide-overlay.right {
  background:
    linear-gradient(
      270deg,
      rgba(22,29,40,0.82) 0%,
      rgba(22,29,40,0.45) 55%,
      rgba(22,29,40,0.15) 100%
    );
}

.hero-slide-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center;
}

.hero-text-box { max-width: 520px; }
.hero-text-box.right { margin-left: auto; text-align: right; }

.hero-text-box .s-tag {
  display: inline-block;
  background: var(--clr-orange);
  color: #fff;
  font-family: var(--font-bold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.hero-text-box h2 {
  font-family: var(--font-black);
  font-size: 44px;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 10px;
  text-shadow: 0 3px 16px rgba(0,0,0,.6), 0 1px 4px rgba(0,0,0,.4);
}
.hero-text-box h3 {
  font-family: var(--font-bold);
  font-size: 16px;
  color: var(--clr-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero-text-box p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-text-box .price-tag {
  display: inline-block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
}
.hero-text-box .price-tag b { font-family: var(--font-black); font-size: 30px; color: var(--clr-orange); }
.hero-text-box .price-tag small { font-size: 12px; color: rgba(255,255,255,0.7); }

.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-text-box.right .hero-btns { justify-content: flex-end; }

/* Swiper nav */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--clr-white);
  background: rgba(255,108,58,.75);
  width: 44px; height: 44px;
  border-radius: 50%;
  transition: background 0.2s;
}
.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after { font-size: 16px; }
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: var(--clr-orange); }

.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 10px; height: 10px;
  transition: var(--transition);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--clr-orange);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .hero-swiper { height: 440px; }
  .hero-text-box h2 { font-size: 26px; }
  .hero-text-box h3 { font-size: 13px; }
  .hero-text-box p  { font-size: 13px; }
}
@media (max-width: 575px) {
  .hero-swiper { height: 380px; }
  .hero-text-box h2 { font-size: 22px; }
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev { display: none; }
}

/* ============================================================
   10 — TELEASSISTENZA BANNER (type-9)
   ============================================================ */
.banner-teleassist {
  background: var(--clr-navy);
  padding: 20px 0;
}
.banner-teleassist .inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
  text-align: center;
}
.banner-teleassist .title {
  font-family: var(--font-black);
  font-size: 20px;
  color: var(--clr-white);
  margin: 0;
}
.banner-teleassist .price {
  font-size: 16px;
  color: var(--clr-gray-light);
}
.banner-teleassist .price b { font-family: var(--font-black); font-size: 22px; color: var(--clr-orange); }
.banner-teleassist .price small { font-size: 12px; }
.banner-teleassist .link-more {
  font-size: 13px;
  color: var(--clr-orange);
  transition: opacity 0.2s;
}
.banner-teleassist .link-more:hover { opacity: 0.75; }

/* ============================================================
   11 — SERVIZI (type-1 icon-entry)
   ============================================================ */
.services-section { padding: 80px 0 20px; }

.icon-entry {
  display: flex;
  padding-bottom: 50px;
  gap: 0;
}
.icon-entry .icon-img {
  flex: 0 0 70px;
  width: 70px;
  padding-top: 8px;
}
.icon-entry .icon-img img { width: 60px; height: 60px; object-fit: contain; }
.icon-entry .entry-content { flex: 1; padding-left: 18px; }
.icon-entry .entry-title {
  font-family: var(--font-bold);
  font-size: 17px;
  color: var(--clr-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.icon-entry .entry-text {
  font-size: 14px;
  line-height: 22px;
  color: var(--clr-gray-text);
}
.icon-entry .entry-text ul { padding: 0; margin: 0; }
.icon-entry .entry-text li {
  padding-bottom: 4px;
  padding-left: 14px;
  position: relative;
}
.icon-entry .entry-text li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--clr-orange);
}
.icon-entry .entry-text a {
  color: var(--clr-gray-text);
  transition: color 0.15s;
}
.icon-entry .entry-text a:hover { color: var(--clr-orange); }

@media (max-width: 575px) {
  .icon-entry { flex-direction: column; }
  .icon-entry .icon-img { padding-top: 0; }
  .icon-entry .entry-content { padding-left: 0; padding-top: 12px; }
}

/* ============================================================
   12 — AZIENDE (type-14 con bg image)
   ============================================================ */
.bg-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.bg-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(22,29,40,0.68);
}
.bg-section .container { position: relative; z-index: 1; }

.bg-section .section-header .title { color: var(--clr-white); }
.bg-section .section-header .text  { color: var(--clr-gray-light); }

.feature-box {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.feature-box .image-wrapper {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid rgba(255,108,58,0.5);
}
.feature-box .image-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
}
.feature-box .feat-title {
  font-family: var(--font-bold);
  font-size: 16px;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.feature-box .feat-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--clr-gray-light);
}

/* Type-14 - dark section aziende */
.aziende-section {
  padding: 80px 0;
  background: var(--clr-navy-dk);
}
.aziende-section .section-header .title { color: var(--clr-white); }
.aziende-section .section-header .text  { color: var(--clr-gray-light); }
.aziende-section .block-cta .cta-desc   { color: rgba(255,255,255,0.5); }

/* ============================================================
   13 — TESTIMONIANZE (Swiper 11, twin)
   ============================================================ */
.testimonials-section { padding: 80px 0; background: var(--clr-bg-alt); }

.testimonials-top-swiper {
  margin-bottom: 20px;
}
.testimonials-top-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.testimonials-top-swiper .swiper-slide.swiper-slide-active,
.testimonials-top-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
.testimonials-top-swiper .swiper-slide img {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 3px solid transparent;
  object-fit: cover;
  display: block; margin: 0 auto;
  transition: border-color 0.3s;
}
.testimonials-top-swiper .swiper-slide-thumb-active img {
  border-color: var(--clr-orange);
}

.testimonials-main-swiper { margin-top: 30px; }
.testimonials-main-swiper blockquote {
  background: var(--clr-white);
  border-radius: 8px;
  padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  position: relative;
  text-align: center;
  margin: 0;
}
.testimonials-main-swiper blockquote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--clr-orange);
  opacity: 0.2;
  position: absolute; top: -10px; left: 24px;
  line-height: 1;
}
.testimonials-main-swiper blockquote p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-gray-text);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonials-main-swiper blockquote .testimonial-name {
  font-family: var(--font-bold);
  font-size: 14px;
  color: var(--clr-navy);
}
.testimonials-main-swiper blockquote .testimonial-role {
  font-size: 12px;
  color: var(--clr-gray-light);
}
.testimonials-main-swiper blockquote a {
  color: var(--clr-orange);
  transition: opacity 0.2s;
}
.testimonials-main-swiper blockquote a:hover { opacity: 0.75; }

/* ============================================================
   14 — PARTNER CAROUSEL (Swiper 11 autoplay)
   ============================================================ */
.partner-section { padding: 60px 0; background: var(--clr-white); }

.partner-swiper .swiper-slide {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 20px;
  opacity: 0.55;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}
.partner-swiper .swiper-slide:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.partner-swiper .swiper-slide img {
  max-height: 55px; width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* ============================================================
   15 — NEWSLETTER SECTION
   ============================================================ */
.newsletter-section { padding: 80px 0 40px; background: var(--clr-navy); }
.newsletter-section .section-header .title { color: var(--clr-white); }
.newsletter-section .section-header .text  { color: var(--clr-gray-light); }

.newsletter-form {
  height: 46px;
  background: var(--clr-white);
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  max-width: 460px;
  margin: 24px auto 0;
}
.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  background: none;
  padding: 0 16px;
  font-size: 14px;
  color: var(--clr-navy);
  font-family: var(--font-reg);
  outline: none;
}
.newsletter-form input[type="email"]::placeholder { color: var(--clr-gray-light); }
.newsletter-form button {
  width: 50px;
  background: var(--clr-orange);
  border: none;
  color: var(--clr-white);
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.newsletter-form button:hover { opacity: 0.85; }

/* ============================================================
   16 — FOOTER
   ============================================================ */
footer {
  background: var(--clr-navy);
  color: var(--clr-gray-light);
  font-size: 14px;
  line-height: 22px;
  font-family: var(--font-reg);
  padding-top: 50px;
}

.footer-col { margin-bottom: 40px; }
.footer-col .col-title {
  font-family: var(--font-black);
  font-size: 16px;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.footer-col p { color: var(--clr-gray-light); line-height: 1.7; }
.footer-col ul { padding: 0; margin: 0; }
.footer-col ul li { padding-bottom: 4px; }
.footer-col ul li a { color: var(--clr-gray-light); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--clr-orange); }

/* Social icons */
.social-icons-row { margin-bottom: 30px; }
.social-icon {
  display: block;
  text-align: center;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.social-icon img {
  width: 26px; height: 26px;
  display: block; margin: 0 auto;
  position: relative; z-index: 1;
  transition: transform 0.2s;
}
.social-icon::before {
  content: '';
  position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--clr-orange);
  transition: left 0.25s ease;
}
.social-icon:hover::before { left: 0; }
.social-icon:hover img { transform: scale(1.15); }

/* Footer menu bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
}
.footer-menu {
  display: flex; flex-wrap: wrap; gap: 0 18px;
  padding: 0; margin: 0;
}
.footer-menu li a { color: var(--clr-white); font-size: 13px; transition: color 0.15s; }
.footer-menu li a:hover { color: var(--clr-orange); }
.footer-copyright {
  text-align: right;
  color: var(--clr-white);
  font-size: 13px;
}

/* Footer line (contacts strip) */
.footer-line {
  background: var(--clr-navy-dk);
  padding: 12px 0;
}
.footer-line-item {
  display: flex; align-items: center;
  padding: 12px 0;
  gap: 14px;
}
.footer-line-item img {
  width: 42px; height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-line-item .fl-text {
  font-family: var(--font-bold);
  font-size: 13px;
  color: var(--clr-white);
  line-height: 1.4;
}
.footer-line-item .fl-text a { color: var(--clr-white); transition: color 0.15s; }
.footer-line-item .fl-text a:hover { color: var(--clr-orange); }

@media (max-width: 767px) {
  .footer-copyright { text-align: left; margin-top: 8px; }
  .footer-menu { margin-bottom: 8px; }
}

/* ============================================================
   17 — WHATSAPP FLOATING BUTTON
   ============================================================ */
#whatsapp-btn {
  position: fixed;
  right: 20px; bottom: 24px;
  z-index: 500;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
#whatsapp-btn img { width: 34px; height: 34px; }

/* Pulse ring */
#whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.4; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================================
   18 — COOKIE BANNER
   ============================================================ */
#cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--clr-navy-dk);
  color: var(--clr-gray-light);
  font-size: 13px;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
  z-index: 1000;
  box-shadow: 0 -2px 12px rgba(0,0,0,.3);
}
#cookie-bar.hidden { display: none; }
#cookie-bar p { margin: 0; }
#cookie-bar a { color: var(--clr-orange); }
#cookie-bar .btn-cookie {
  background: var(--clr-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 8px 18px;
  font-family: var(--font-bold);
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#cookie-bar .btn-cookie:hover { opacity: 0.85; }

/* ============================================================
   19 — AOS override (replaces WOW)
   ============================================================ */
[data-aos] { transition-duration: 600ms !important; }

/* ============================================================
   20 — UTILITIES
   ============================================================ */
.text-orange { color: var(--clr-orange); }
.bg-navy     { background: var(--clr-navy); }
.bg-navy-dk  { background: var(--clr-navy-dk); }
.center-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
