/* ========================================
   IMPERMEABILIZACIONES SEVILLA - NUEVO DISEÑO
   Colores corporativos: Azul #1a3a6c + Amarillo #FFFF00
   ======================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.6; color: #1e293b; background: #fff; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --blue-dark:    #0d1f3c;
  --blue:         #1a3a6c;
  --blue-light:   #2563eb;
  --yellow:       #FFFF00;
  --yellow-dark:  #CCCC00;
  --yellow-light: #FFFFCC;
  --text:         #1e293b;
  --text-muted:   #64748b;
  --bg:           #f8fafc;
  --white:        #ffffff;
  --border:       #e2e8f0;
  --shadow:       0 2px 15px rgba(0,0,0,0.08);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.15);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   all 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; color: var(--blue); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
b, strong { font-weight: 600; color: var(--text); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title .label {
  display: inline-block; background: var(--yellow-light); color: var(--yellow-dark);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 12px;
}
.section-title h2 { font-size: 2.2rem; margin-bottom: 12px; }
.section-title p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-title .sep { width: 50px; height: 4px; background: var(--yellow); margin: 15px auto 0; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent; text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--blue-dark); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,255,0,0.45); color: var(--blue-dark); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); border-color: var(--white); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; background: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 120px; margin: 0 auto 20px; }
.preloader-spinner {
  width: 45px; height: 45px; border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--yellow); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--blue-dark); color: var(--white);
  padding: 18px 24px; z-index: 9990;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(100%); transition: transform 0.5s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner .cookie-text { font-size: 0.88rem; opacity: 0.9; flex: 1; }
#cookie-banner .cookie-text a { color: var(--yellow); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--yellow); color: var(--blue-dark); border: none;
  padding: 10px 22px; border-radius: 8px; font-weight: 700; cursor: pointer;
  font-size: 0.88rem; transition: var(--transition); white-space: nowrap;
}
.cookie-accept:hover { background: var(--yellow-dark); }
.cookie-reject {
  background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 22px; border-radius: 8px; font-weight: 600; cursor: pointer;
  font-size: 0.88rem; transition: var(--transition); white-space: nowrap;
}
.cookie-reject:hover { border-color: var(--white); color: var(--white); }

/* ===== HEADER ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header-top {
  background: var(--blue); padding: 9px 0;
  font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top-left, .header-top-right { display: flex; align-items: center; gap: 20px; }
.header-top a {
  color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; transition: var(--transition);
}
.header-top a:hover { color: var(--yellow); }
.header-top i { color: var(--yellow); }

.header-nav {
  background: var(--white); padding: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.header-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.header-nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; }
.logo img { height: 46px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; color: var(--text); font-weight: 600; font-size: 0.88rem;
  border-radius: 8px; transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--blue); background: var(--bg); }
.nav-arrow { font-size: 0.65rem; transition: transform 0.3s; }
.nav-item:hover > .nav-link .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 210px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition);
  border-top: 3px solid var(--yellow); overflow: hidden;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px; color: var(--text); font-size: 0.88rem; font-weight: 500;
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--bg); color: var(--blue); padding-left: 24px; }
.nav-dropdown a i { color: var(--yellow); font-size: 0.8rem; }

/* Nav CTA */
.nav-cta {
  margin-left: 8px; padding: 10px 20px !important;
  background: var(--yellow) !important; color: var(--blue-dark) !important;
  border-radius: var(--radius) !important; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,255,0,0.35) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border: none; background: none; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--blue); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== NOTICE BAR ===== */
.notice-bar {
  background: #fff3cd; border-bottom: 2px solid #f59e0b;
  padding: 12px 0; margin-top: 106px;
}
.notice-bar .container { display: flex; align-items: flex-start; gap: 12px; }
.notice-bar i { color: #b45309; font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.notice-bar p { margin: 0; font-size: 0.92rem; color: #78350f; line-height: 1.5; }
.notice-bar strong { color: #92400e; }
@media (max-width: 768px) {
  .notice-bar { margin-top: 62px; }
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, rgba(13,31,60,0.85) 0%, rgba(26,58,108,0.7) 100%),
              url('../img/banner-2-1.jpg') center/cover no-repeat;
  display: flex; align-items: center; padding: 60px 0;
}
.hero-content { color: var(--white); max-width: 700px; }
.hero-badge-top {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,0,0.15); border: 1px solid rgba(255,255,0,0.5);
  color: var(--yellow); padding: 7px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white); font-size: 3.4rem; line-height: 1.1;
  margin-bottom: 18px; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p {
  font-size: 1.15rem; opacity: 0.92; margin-bottom: 35px;
  line-height: 1.75; max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 25px; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.85); font-size: 0.88rem;
}
.hero-trust-item i { color: var(--yellow); font-size: 1rem; }

/* ===== SERVICES ===== */
.services { background: var(--white); padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--yellow); }
.service-img-wrap { overflow: hidden; height: 180px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--blue); }
.service-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 12px; }
.service-card-link {
  display: flex; align-items: center; gap: 5px;
  color: var(--yellow-dark); font-weight: 700; font-size: 0.85rem; transition: var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--blue); }

/* ===== ABOUT / STATS ===== */
.about { background: var(--bg); padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 18px; }
.about-text h2 span { color: var(--yellow-dark); }
.about-text p { color: var(--text-muted); line-height: 1.8; }
.about-text .btn { margin-top: 10px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0; }
.about-feat-item { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 600; }
.about-feat-item i { color: var(--yellow-dark); }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; box-shadow: var(--shadow);
  border-bottom: 4px solid var(--yellow); transition: var(--transition);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 700; color: var(--blue); line-height: 1; }
.stat-num .suffix { color: var(--yellow-dark); }
.stat-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; margin-top: 6px; }

/* ===== WHY US ===== */
.why-us { background: var(--blue); padding: 80px 0; }
.why-us .section-title h2 { color: var(--white); }
.why-us .section-title p { color: rgba(255,255,255,0.72); }
.why-us .sep { background: var(--yellow); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 35px 25px; text-align: center;
  border: 1px solid rgba(255,255,255,0.1); transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); border-color: rgba(255,255,0,0.5); }
.why-icon {
  width: 72px; height: 72px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.8rem; color: var(--blue-dark);
}
.why-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* ===== TRUST SECTION ===== */
.trust-section {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  padding: 70px 0; text-align: center;
}
.trust-section h2 { color: var(--blue-dark); font-size: 2.4rem; margin-bottom: 12px; }
.trust-section h2 span { color: var(--blue); }
.trust-section p { color: rgba(13,31,60,0.75); font-size: 1.08rem; max-width: 550px; margin: 0 auto 30px; }
.trust-section .btn-blue { font-size: 1.05rem; padding: 15px 38px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 55px 0; }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 6px; }
.cta-text p { color: rgba(255,255,255,0.7); margin: 0; font-size: 1rem; }
.cta-banner .btn-primary { font-size: 1.05rem; padding: 16px 36px; }

/* ===== FAQ ===== */
.faq { background: var(--white); padding: 80px 0; }
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 2px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--yellow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; user-select: none; gap: 12px;
}
.faq-question h4 { font-size: 1rem; color: var(--text); font-weight: 600; margin: 0; }
.faq-toggle {
  width: 30px; height: 30px; background: var(--yellow-light); color: var(--yellow-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: var(--transition); font-weight: 700;
}
.faq-item.open .faq-toggle { background: var(--yellow); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 0 24px 20px; color: var(--text-muted); font-size: 0.94rem;
  line-height: 1.75; border-top: 1px solid var(--border); padding-top: 18px;
}

/* ===== INNER BANNER (service pages) ===== */
.inner-banner {
  background: linear-gradient(135deg, rgba(13,31,60,0.88) 0%, rgba(26,58,108,0.75) 100%),
              url('../img/backgroud-1-3.jpg') center/cover no-repeat;
  padding: 120px 0 55px; text-align: center; color: var(--white); margin-top: 106px;
}
.inner-banner h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 14px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--yellow); }
.breadcrumb a:hover { color: var(--white); }

/* ===== SERVICE PAGE ===== */
.service-page { padding: 70px 0; background: var(--white); }
.service-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 120px; }
.sidebar-card {
  background: var(--bg); border-radius: var(--radius); padding: 22px;
  border-top: 4px solid var(--yellow); box-shadow: var(--shadow);
}
.sidebar-card .sc-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--blue); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.sc-item:last-child { margin-bottom: 0; }
.sc-item i { color: var(--yellow-dark); margin-top: 3px; flex-shrink: 0; width: 16px; font-size: 0.9rem; }
.sc-item a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.sc-item a:hover { color: var(--blue); }

.sidebar-cta {
  background: var(--blue); border-radius: var(--radius); padding: 24px;
  text-align: center; box-shadow: var(--shadow);
}
.sidebar-cta h3 { color: var(--yellow); font-size: 1rem; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-bottom: 15px; }
.sidebar-cta .btn { width: 100%; justify-content: center; font-size: 0.9rem; }

/* Service content */
.service-content h1 { font-size: 1.9rem; margin-bottom: 20px; color: var(--blue); }
.service-content h2 { font-size: 1.45rem; margin-top: 32px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 3px solid var(--yellow-light); }
.service-content h3 { font-size: 1.15rem; margin-top: 24px; margin-bottom: 10px; color: var(--blue); }
.service-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.service-content ul { margin: 14px 0 18px 0; }
.service-content ul li { padding: 7px 0 7px 22px; position: relative; color: var(--text-muted); font-size: 0.93rem; }
.service-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow-dark); font-weight: 700; }
.service-content img { width: 100%; border-radius: var(--radius-lg); margin: 18px 0; box-shadow: var(--shadow); }
.highlight-box { background: var(--yellow-light); border-left: 4px solid var(--yellow); padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; font-size: 0.93rem; color: var(--text); line-height: 1.75; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 65px 0; }
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 50px; }
.form-title { font-size: 1.8rem; margin-bottom: 6px; }
.form-subtitle { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 12px 15px; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 0.93rem; color: var(--text);
  transition: var(--transition); font-family: inherit; background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,58,108,0.1); }
textarea.form-control { height: 145px; resize: vertical; }
.form-submit {
  background: var(--blue); color: var(--white); border: none; padding: 14px 36px;
  border-radius: var(--radius); font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); font-family: inherit; display: inline-flex; align-items: center; gap: 8px;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.form-result { display: none; margin-top: 15px; padding: 12px 18px; border-radius: var(--radius); font-size: 0.9rem; }
.form-result.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; display: block; }
.form-result.error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; display: block; }

.contact-info-box {
  background: var(--blue); border-radius: var(--radius-lg);
  padding: 35px; color: var(--white); height: fit-content; position: sticky; top: 120px;
}
.contact-info-box h3 { color: var(--yellow); font-size: 1.25rem; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.ci-items { display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; align-items: flex-start; gap: 13px; }
.ci-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 0.95rem; flex-shrink: 0; }
.ci-detail small { display: block; font-size: 0.78rem; opacity: 0.6; margin-bottom: 2px; }
.ci-detail a { color: rgba(255,255,255,0.88); font-size: 0.92rem; transition: var(--transition); }
.ci-detail a:hover { color: var(--yellow); }

.map-embed { width: 100%; height: 380px; border: none; border-radius: var(--radius-lg); display: block; margin-top: 40px; box-shadow: var(--shadow); }

/* ===== PRESUPUESTO ===== */
.quote-page { padding: 65px 0; }
.quote-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 50px; }
.quote-info-box {
  background: var(--yellow-light); border-radius: var(--radius-lg);
  padding: 28px; border: 2px solid var(--yellow); margin-bottom: 22px;
}
.quote-info-box h3 { color: var(--blue); font-size: 1.1rem; margin-bottom: 8px; }
.quote-info-box p { color: var(--text); font-size: 0.9rem; margin: 0; line-height: 1.6; }
.quote-features { display: flex; flex-direction: column; gap: 12px; }
.qf-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); }
.qf-item i { color: var(--yellow-dark); }

/* ===== FOOTER ===== */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.78); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 14px; }
.footer-about p { font-size: 0.88rem; line-height: 1.7; opacity: 0.72; }
.footer-heading { color: var(--yellow); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,0,0.25); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.68); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--yellow); }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.fci { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: rgba(255,255,255,0.72); }
.fci i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }
.fci a { color: rgba(255,255,255,0.72); transition: var(--transition); }
.fci a:hover { color: var(--yellow); }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); font-size: 1rem; transition: var(--transition);
}
.social-btn:hover { background: var(--yellow); color: var(--blue-dark); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.83rem; opacity: 0.55; margin: 0; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-legal a:hover { color: var(--yellow); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 990;
  width: 58px; height: 58px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.1); color: var(--white); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.75); }
}

/* ===== FADE IN ===== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== URGENT BADGE ===== */
.urgent-tag {
  display: inline-flex; align-items: center; gap: 7px; background: #ef4444;
  color: var(--white); padding: 7px 18px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem; animation: urgent-pulse 1.6s infinite;
}
@keyframes urgent-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.45); }
  50%       { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
}

/* ===== ERROR PAGE ===== */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 0; }
.error-page h1 { font-size: 8rem; color: var(--yellow); line-height: 1; margin-bottom: 10px; }
.error-page h2 { font-size: 2rem; margin-bottom: 15px; }
.error-page p { color: var(--text-muted); margin-bottom: 30px; }

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

@media (max-width: 768px) {
  .header-top { display: none; }
  .header-nav .container { height: 62px; }
  .hero { min-height: 88vh; }
  .hero h1 { font-size: 2.1rem; }
  .inner-banner { padding: 90px 0 40px; margin-top: 62px; }
  .inner-banner h1 { font-size: 1.8rem; }
  .section-pad { padding: 55px 0; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 62px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px; box-shadow: var(--shadow-lg);
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 990; overflow-y: auto;
  }
  .nav-menu.open { max-height: 100dvh; opacity: 1; visibility: visible; }
  .nav-item { width: 100%; }
  .nav-link { padding: 13px 14px; font-size: 0.97rem; border-radius: 8px; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: none; border-radius: 0;
    border-left: 3px solid var(--yellow); margin-left: 14px;
    max-height: 0; overflow: hidden; display: block; transition: max-height 0.3s ease;
  }
  .nav-item.mob-open .nav-dropdown { max-height: 300px; }
  .nav-dropdown a { padding: 10px 14px; font-size: 0.9rem; }
  .nav-cta { margin: 10px 0 0; text-align: center; justify-content: center; }

  /* Grids */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-layout { grid-template-columns: 1fr; }
  .contact-grid, .quote-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cta-banner .container { text-align: center; justify-content: center; flex-direction: column; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .contact-info-box { position: static; }
  .sidebar { position: static; }
  .sidebar { order: -1; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; }
  .cookie-btns { flex-direction: column; width: 100%; }
  .cookie-accept, .cookie-reject { width: 100%; text-align: center; }
  .section-title h2 { font-size: 1.75rem; }
  .trust-section h2 { font-size: 1.8rem; }
}
