/* =========================================================
   myAgents Modena - Main Stylesheet
   Negozio Finanziario UniCredit di Paolo Pavanello
   ========================================================= */

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

/* ===== CSS VARIABLES ===== */
:root {
  --primary:       #0a2540;
  --primary-light: #0d3060;
  --primary-dark:  #071a2e;
  --white:         #ffffff;
  --light-gray:    #f5f7fa;
  --mid-gray:      #e8ecf0;
  --accent-red:    #d4002a;
  --accent-blue:   #005da0;
  --accent-blue-lt:#e8f1fa;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --border:        #e5e7eb;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --shadow:        0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.15);
  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.3s ease;
  --container-max: 1200px;
  --header-height: 80px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: var(--primary);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li > a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-nav > ul > li > a:hover { background: rgba(255,255,255,0.13); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
  overflow: hidden;
  z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  color: var(--text-body);
  font-size: 0.88rem;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--accent-blue);
  padding-left: 28px;
}
.arrow { font-size: 0.68rem; transition: transform 0.3s; }
.dropdown:hover .arrow { transform: rotate(180deg); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow-y: auto;
  padding: 80px 24px 40px;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-close {
  position: fixed;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 1.6rem;
  padding: 8px;
  z-index: 2001;
  line-height: 1;
}
.mobile-overlay > ul { text-align: center; width: 100%; max-width: 360px; }
.mobile-overlay > ul > li > a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 14px 16px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-overlay > ul > li > a:hover { color: rgba(255,255,255,0.75); }
.mobile-submenu {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  margin: 6px 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.mobile-submenu.open { max-height: 600px; }
.mobile-submenu li a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  padding: 11px 24px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.mobile-submenu li a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* ===== HERO (homepage) ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b7e 60%, #1a4a8e 100%);
  color: var(--white);
  padding: calc(var(--header-height) + 80px) 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,93,160,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,0,42,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { max-width: 800px; position: relative; z-index: 1; }
.hero-logo {
  height: 62px;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-accent { color: rgba(255,255,255,0.75); }
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  opacity: 0.88;
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 680px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.93rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent-red); color: var(--white); border-color: var(--accent-red); }
.btn-primary:hover { background: #b0001f; border-color: #b0001f; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,0,42,0.35); }
.btn-secondary { background: var(--accent-blue); color: var(--white); border-color: var(--accent-blue); }
.btn-secondary:hover { background: #004c87; border-color: #004c87; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,93,160,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b7e 100%);
  color: var(--white);
  padding: calc(var(--header-height) + 56px) 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,93,160,0.28) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.45; }
.page-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.02rem;
  opacity: 0.86;
  max-width: 580px;
  line-height: 1.8;
}

/* ===== SECTIONS ===== */
section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--accent-blue-lt);
  color: var(--accent-blue);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.3;
}
.section-header p {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== INTRO SECTION ===== */
.intro-section { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.intro-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}
.intro-content p { color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.intro-cta { margin-top: 8px; }

.info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.info-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0.85;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-item:last-child { border-bottom: none; }
.info-icon { font-size: 1rem; min-width: 26px; padding-top: 3px; }
.info-item a { color: rgba(255,255,255,0.88); transition: var(--transition); }
.info-item a:hover { color: var(--white); }
.info-item span { color: rgba(255,255,255,0.88); font-size: 0.9rem; }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--light-gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent-blue);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-blue-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.service-link:hover { color: var(--primary); gap: 10px; }

/* ===== CONTENT SECTION (service pages) ===== */
.content-section { background: var(--white); }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}
.content-main h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 14px;
  line-height: 1.3;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 10px;
}
.content-main p { color: var(--text-body); line-height: 1.85; margin-bottom: 14px; }
.content-main ul.styled-list { margin: 14px 0 22px; }
.content-main ul.styled-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
  font-size: 0.95rem;
}
.content-main ul.styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}
.content-sidebar { position: sticky; top: calc(var(--header-height) + 24px); }
.sidebar-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.sidebar-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}
.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.sidebar-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 0.75rem;
}
.sidebar-card ul li:last-child { border-bottom: none; }

.sidebar-contact {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 26px;
}
.sidebar-contact h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.sidebar-contact .ci {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
}
.sidebar-contact .ci:last-of-type { border-bottom: none; }
.sidebar-contact .ci a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.sidebar-contact .ci a:hover { color: var(--white); }
.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 14px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-wa-full:hover { background: #1da851; transform: translateY(-1px); }

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.highlight-box {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 4px solid var(--accent-blue);
}
.highlight-box h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.highlight-box p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ===== FAQ ===== */
.faq-section { background: var(--light-gray); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--accent-blue); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s ease;
  font-size: 0.93rem;
  line-height: 1.5;
  user-select: none;
}
.faq-question:hover { color: var(--accent-blue); }
.faq-toggle {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-blue);
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--accent-blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
  padding: 16px 24px 22px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 0.92rem;
  border-top: 1px solid var(--border);
}

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--white); }
.contact-section.bg-light { background: var(--light-gray); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.3;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.cdi {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--accent-blue-lt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.cdt strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}
.cdt a, .cdt span { color: var(--text-body); font-weight: 500; font-size: 0.92rem; transition: var(--transition); }
.cdt a:hover { color: var(--accent-blue); }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-section.bg-light .contact-form-box { box-shadow: none; }
.contact-form-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-body);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0,93,160,0.09);
}
.form-group textarea { height: 115px; resize: vertical; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-checkbox input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  margin-top: 3px;
  accent-color: var(--accent-blue);
}
.form-checkbox label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.form-checkbox a { color: var(--accent-blue); text-decoration: underline; }
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--accent-blue); transform: translateY(-1px); box-shadow: var(--shadow); }
.form-success { display: none; text-align: center; padding: 36px 16px; }
.form-success.show { display: block; }
.form-success .fs-icon { font-size: 2.8rem; margin-bottom: 12px; }
.form-success h4 { font-size: 1.2rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== OTHER SERVICES ===== */
.other-services { background: var(--light-gray); }
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.osc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
}
.osc:hover { border-color: var(--accent-blue); transform: translateY(-3px); box-shadow: var(--shadow); }
.osc-icon { font-size: 1.9rem; margin-bottom: 10px; display: block; }
.osc-name { font-size: 0.84rem; font-weight: 600; color: var(--primary); line-height: 1.4; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--primary);
  padding: 52px 0;
  color: var(--white);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-item .ti-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.trust-item .ti-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 420px; border: none; }

/* ===== DISCLAIMER ===== */
.disclaimer { background: var(--mid-gray); padding: 28px 0; }
.disclaimer p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 52px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-logo p { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col .fci {
  display: flex; align-items: center; gap: 9px;
  padding: 5px 0;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
}
.footer-col .fci a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col .fci a:hover { color: var(--white); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===== WHATSAPP WIDGET ===== */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  z-index: 997;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }
.wa-btn svg { width: 28px; height: 28px; fill: var(--white); }
.wa-popup {
  position: fixed;
  bottom: 98px; right: 28px;
  width: 316px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 996;
  overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: var(--transition);
  transform-origin: bottom right;
}
.wa-popup.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-popup-header {
  background: var(--primary);
  color: var(--white);
  padding: 15px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.wa-popup-header h4 { font-size: 0.92rem; font-weight: 600; }
.wa-popup-close {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  padding: 4px;
  line-height: 1;
  transition: var(--transition);
}
.wa-popup-close:hover { color: var(--white); }
.wa-popup-body { padding: 18px; }
.wa-popup-body p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; }
.wa-options { display: flex; flex-direction: column; gap: 9px; }
.wa-opt {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.87rem;
  transition: var(--transition);
}
.wa-opt-call { background: var(--accent-blue-lt); color: var(--accent-blue); }
.wa-opt-call:hover { background: rgba(0,93,160,0.18); }
.wa-opt-wa { background: rgba(37,211,102,0.12); color: #1a9e4e; }
.wa-opt-wa:hover { background: rgba(37,211,102,0.2); }

/* ===== FADE ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; }
.fd2 { transition-delay: 0.18s; }
.fd3 { transition-delay: 0.26s; }
.fd4 { transition-delay: 0.34s; }
.fd5 { transition-delay: 0.42s; }
.fd6 { transition-delay: 0.50s; }
.fd7 { transition-delay: 0.58s; }
.fd8 { transition-delay: 0.66s; }
.fd9 { transition-delay: 0.74s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .other-services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .intro-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  section { padding: 56px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: calc(var(--header-height) + 44px) 0 56px; }
  .hero-logo { margin: 0 auto 24px; }
  .hero h1 { text-align: center; }
  .hero-subtitle { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; top: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: 1fr; gap: 22px; }
  .highlights { grid-template-columns: 1fr; }
  .wa-popup { width: calc(100vw - 52px); right: 14px; bottom: 84px; }
  .wa-btn { right: 14px; bottom: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: calc(var(--header-height) + 36px) 0 40px; }
}
