/* ====================================
   HELQAVI — Premium Electrical Services
   Costa Rica | Paleta: Esmeralda + Cobre
   ==================================== */

/* --- Variables --- */
:root {
  --emerald:       #0d3b2e;
  --emerald-mid:   #155c42;
  --emerald-light: #1e7a56;
  --emerald-soft:  #2a9a6e;
  --copper:        #b5541a;
  --copper-light:  #d4742e;
  --copper-pale:   #f0a060;
  --white:         #ffffff;
  --off-white:     #f2f7f5;
  --gray-light:    #e0ece7;
  --gray:          #7a9b8e;
  --text-dark:     #0f2b22;
  --text-body:     #3d5c50;
  --shadow-sm:  0 2px 8px rgba(13,59,46,0.08);
  --shadow-md:  0 8px 32px rgba(13,59,46,0.13);
  --shadow-lg:  0 16px 64px rgba(13,59,46,0.18);
  --shadow-cu:  0 4px 24px rgba(181,84,26,0.28);
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
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; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--emerald);
  line-height: 1.25;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.section-title span { color: var(--copper); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section         { padding: 100px 0; }
.section-light   { background: var(--off-white); }
.section-dark    { background: var(--emerald); }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-cu);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--copper-light) 0%, var(--copper-pale) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(181,84,26,0.4);
  color: var(--emerald);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--emerald); }
.btn-outline-copper {
  border: 2px solid var(--copper);
  color: var(--copper);
  background: transparent;
}
.btn-outline-copper:hover { background: var(--copper); color: var(--white); }

/* ====================================
   HEADER / NAVIGATION
   ==================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: rgba(13,59,46,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-cu);
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-tagline {
  font-size: 0.64rem;
  color: var(--copper-pale);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.nav-link:hover, .nav-link.active { color: var(--copper-pale); }
.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.82rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Topbar */
.topbar {
  background: var(--emerald);
  border-bottom: 1px solid rgba(181,84,26,0.25);
  padding: 8px 0;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-info { display: flex; align-items: center; gap: 28px; }
.topbar-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.topbar-item i { color: var(--copper-light); font-size: 0.8rem; }
.topbar-hours { font-size: 0.78rem; color: var(--copper-pale); font-weight: 600; letter-spacing: 0.05em; }

/* ====================================
   HERO
   ==================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13,59,46,0.94) 0%,
    rgba(13,59,46,0.72) 50%,
    rgba(13,59,46,0.30) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181,84,26,0.15);
  border: 1px solid rgba(181,84,26,0.45);
  color: var(--copper-pale);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: var(--font-head);
}
.hero-title .copper { color: var(--copper-light); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(181,84,26,0.8), transparent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ====================================
   FEATURE CARDS
   ==================================== */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-light) 100%);
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(181,84,26,0.1) 0%, rgba(181,84,26,0.04) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: var(--transition);
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%); }
.feature-icon i { font-size: 1.5rem; color: var(--copper); transition: var(--transition); }
.feature-card:hover .feature-icon i { color: var(--white); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--emerald); }
.feature-card p  { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

/* ====================================
   SERVICE CARDS
   ==================================== */
.service-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-img { position: relative; height: 240px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,59,46,0.55) 0%, transparent 60%); }
.service-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--copper); color: var(--white);
  font-size: 0.7rem; font-weight: 700; padding: 5px 12px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em;
}
.service-body { padding: 28px; }
.service-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--emerald); font-family: var(--font-head); }
.service-body p  { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--copper); transition: var(--transition); }
.service-link:hover { gap: 14px; color: var(--emerald); }
.service-link i { font-size: 0.8rem; }

/* ====================================
   ABOUT
   ==================================== */
.about-visual { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-badge-float {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 28px; box-shadow: var(--shadow-lg); text-align: center; min-width: 150px;
}
.about-badge-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--copper); line-height: 1; }
.about-badge-txt { font-size: 0.78rem; color: var(--text-body); margin-top: 6px; line-height: 1.4; }
.about-content { padding-left: 20px; }
.checklist { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.checklist-item { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; color: var(--text-body); }
.check-icon {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check-icon i { font-size: 0.65rem; color: var(--white); }

/* ====================================
   STATS
   ==================================== */
.stats-section { background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 40px 24px; position: relative; }
.stat-item+.stat-item::before {
  content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; color: var(--copper-light); line-height: 1; margin-bottom: 8px; }
.stat-num sup { font-size: 1.5rem; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; text-transform: uppercase; }

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonials { background: var(--off-white); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.quote-icon { font-size: 3.5rem; color: var(--copper); opacity: 0.2; line-height: 1; margin-bottom: 16px; font-family: Georgia,serif; }
.testimonial-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: var(--white); flex-shrink: 0;
}
.author-name  { font-weight: 700; font-size: 0.92rem; color: var(--emerald); }
.author-role  { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }
.stars { color: var(--copper); font-size: 0.75rem; margin-bottom: 12px; letter-spacing: 2px; }

/* ====================================
   PROCESS
   ==================================== */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 52px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--copper), var(--copper-light), var(--copper)); z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--white);
  box-shadow: var(--shadow-cu); border: 4px solid var(--white);
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--emerald); }
.process-step p  { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; }

/* ====================================
   CTA BANNER
   ==================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 60%, var(--emerald) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181,84,26,0.1) 0%, transparent 70%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 12px; }
.cta-text p  { color: rgba(255,255,255,0.7); font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ====================================
   FOOTER
   ==================================== */
.site-footer { background: #071f18; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin: 18px 0 24px; }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; color: var(--white); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--copper-pale); transform: translateX(4px); }
.footer-col ul li a i { font-size: 0.65rem; color: var(--copper); opacity: 0.6; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.footer-contact-icon {
  width: 36px; height: 36px; background: rgba(181,84,26,0.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-contact-icon i { color: var(--copper-light); font-size: 0.85rem; }
.footer-contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-text strong { display: block; color: rgba(255,255,255,0.8); font-size: 0.78rem; margin-bottom: 2px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition);
}
.social-link:hover { background: var(--copper); border-color: var(--copper); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: var(--copper-pale); }

/* ====================================
   PAGE HERO (inner pages)
   ==================================== */
.page-hero {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  padding: 160px 0 80px; position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-banner.jpg') center/cover no-repeat; opacity: 0.07;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem,5vw,3.8rem); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.82rem; }
.breadcrumb a { color: var(--copper-pale); opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: rgba(255,255,255,0.6); }

/* ====================================
   CONTACT FORM
   ==================================== */
.contact-form-wrapper { background: var(--white); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--emerald); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px; border: 1.5px solid var(--gray-light);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text-dark); background: var(--off-white); transition: var(--transition); outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper); background: var(--white);
  box-shadow: 0 0 0 3px rgba(181,84,26,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success i { font-size: 3rem; color: #16a34a; margin-bottom: 16px; display: block; }
.form-success h3 { color: var(--emerald); margin-bottom: 8px; }
.form-success p  { color: var(--text-body); }

/* Contact Info Cards */
.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light);
  display: flex; align-items: flex-start; gap: 20px; transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon i { font-size: 1.3rem; color: var(--white); }
.contact-card-body h3 { font-size: 1rem; color: var(--emerald); margin-bottom: 6px; }
.contact-card-body p  { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

/* ====================================
   LEGAL PAGES
   ==================================== */
.legal-content { max-width: 860px; margin: 0 auto; padding: 80px 24px; }
.legal-content h1 { font-size: 2.5rem; color: var(--emerald); margin-bottom: 8px; }
.legal-date { color: var(--gray); font-size: 0.85rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.4rem; color: var(--emerald); margin: 40px 0 16px; }
.legal-content h3 { font-size: 1.1rem; color: var(--emerald); margin: 24px 0 10px; }
.legal-content p  { margin-bottom: 16px; color: var(--text-body); }
.legal-content ul { margin: 0 0 16px 24px; list-style: disc; }
.legal-content ul li { color: var(--text-body); margin-bottom: 8px; }
.legal-content a { color: var(--copper); text-decoration: underline; }
.legal-divider { border: none; border-top: 1px solid var(--gray-light); margin: 40px 0; }

/* ====================================
   COOKIE BANNER
   ==================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--emerald); border-top: 2px solid rgba(181,84,26,0.35);
  padding: 20px 0; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { font-size: 0.88rem; color: rgba(255,255,255,0.75); max-width: 640px; }
.cookie-text a { color: var(--copper-pale); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 10px 24px; background: var(--copper); color: var(--white);
  border-radius: var(--radius); font-weight: 600; font-size: 0.85rem; transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--copper-light); }
.btn-cookie-decline {
  padding: 10px 20px; background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6); border-radius: var(--radius); font-size: 0.85rem; transition: var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ====================================
   UTILITIES
   ==================================== */
.text-center { text-align: center; }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px}
.mt-32{margin-top:32px} .mt-48{margin-top:48px}
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px}
.mb-24{margin-bottom:24px} .mb-48{margin-bottom:48px}
.copper-line {
  display: block; width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  border-radius: 2px; margin: 16px 0;
}
.copper-line.center { margin: 16px auto; }

/* ====================================
   ANIMATIONS
   ==================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1{transition-delay:0.1s} .fade-up.delay-2{transition-delay:0.2s}
.fade-up.delay-3{transition-delay:0.3s} .fade-up.delay-4{transition-delay:0.4s}

/* ====================================
   SERVICES FULL PAGE
   ==================================== */
.service-full-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); margin-bottom: 48px;
}
.service-full-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.service-full-card:nth-child(even) .service-full-inner { direction: rtl; }
.service-full-card:nth-child(even) .service-full-body { direction: ltr; }
.service-full-img { height: 420px; overflow: hidden; }
.service-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-full-card:hover .service-full-img img { transform: scale(1.04); }
.service-full-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.service-full-body .service-tag { position: static; display: inline-block; margin-bottom: 20px; }
.service-full-body h2 { font-size: 2rem; color: var(--emerald); margin-bottom: 16px; }
.service-full-body p  { color: var(--text-body); line-height: 1.8; margin-bottom: 24px; }
.service-features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-features-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-body); }
.service-features-list li i { color: var(--copper); font-size: 0.7rem; }

/* ====================================
   ABOUT PAGE
   ==================================== */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--gray-light); text-align: center; transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.value-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
  border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.value-icon i { font-size: 1.7rem; color: var(--copper-pale); }
.value-card h3 { font-size: 1.1rem; color: var(--emerald); margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); text-align: center; transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--emerald-mid) 0%, var(--emerald-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--copper-pale);
}
.team-body { padding: 20px 18px 24px; }
.team-body h3 { font-size: 1rem; color: var(--emerald); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--copper); font-weight: 600; margin-bottom: 6px; }
.team-exp  { font-size: 0.78rem; color: var(--gray); }

.cert-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(181,84,26,0.08) 0%, rgba(181,84,26,0.03) 100%);
  border: 1px solid rgba(181,84,26,0.22); border-radius: 100px;
  padding: 8px 18px; font-size: 0.82rem; font-weight: 600; color: var(--emerald);
}
.cert-badge i { color: var(--copper); }

/* Cookie table */
.cookie-table { width: 100%; border-collapse: collapse; margin: 16px 0 32px; font-size: 0.88rem; }
.cookie-table th { background: var(--emerald); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; }
.cookie-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-light); color: var(--text-body); }
.cookie-table tr:hover td { background: var(--off-white); }

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1100px) {
  .grid-4,.features-grid,.stats-grid,.process-steps,.team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .stat-item+.stat-item::before { display: none; }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .service-full-inner,
  .service-full-card:nth-child(even) .service-full-inner { grid-template-columns: 1fr; direction: ltr; }
  .service-full-img { height: 280px; }
  .service-full-body { padding: 36px 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .about-badge-float { bottom: -16px; right: -8px; }
  .about-content { padding-left: 0; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--emerald); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 4px; transition: right 0.35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.3); z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-link { width: 100%; padding: 12px 0; font-size: 1rem; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; justify-content: center; }
  .hamburger { display: flex; z-index: 1001; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid,.grid-3,.features-grid { grid-template-columns: 1fr; }
  .stats-grid,.team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 90px; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
