/* ============================
   Energía Solar A&V - Estilos
   Paleta: 95% Blanco + Salmón (acento mínimo)
   ============================ */

:root {
  --salmon: #FA7268;
  --salmon-dark: #E85A50;
  --salmon-light: #FF8E8A;
  --salmon-soft: #FCE8E7;
  --white: #FFFFFF;
  --off-white: #FDFDFD;
  --gray-50: #FAFAFA;
  --gray-100: #F4F5F7;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-xs: 0 1px 3px rgba(17, 24, 39, 0.04);
  --shadow-sm: 0 2px 10px rgba(17, 24, 39, 0.04);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 16px 40px rgba(17, 24, 39, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gray-900);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--salmon);
}

/* ========== HEADER / NAV ========== */
.top-bar {
  background: var(--white);
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: var(--gray-700);
  margin-right: 16px;
}

.top-bar a:hover {
  color: var(--salmon);
}

.top-bar i {
  margin-right: 5px;
  color: var(--salmon);
}

header.navbar {
  background: var(--white);
  box-shadow: var(--shadow-xs);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-100);
}

header.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  color: var(--gray-900);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--salmon), var(--salmon-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}

.logo-text small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

nav ul li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 15px;
  transition: all var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  background: var(--gray-100);
  color: var(--gray-900);
}

.btn-cta {
  background: var(--gray-900) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}

.btn-cta:hover {
  background: var(--salmon) !important;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--gray-900);
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--gray-900);
  overflow: hidden;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--gray-900);
  letter-spacing: -1px;
}

.hero-content h1 .accent {
  color: var(--salmon);
  position: relative;
  display: inline-block;
}

.hero-content h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--salmon-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 560px;
  color: var(--gray-500);
  line-height: 1.6;
}

.hero-content strong {
  color: var(--gray-900);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gray-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--salmon);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--gray-900);
  color: var(--gray-900);
}

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.2;
  background: var(--gray-100);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image .badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-image .badge .icon {
  width: 40px;
  height: 40px;
  background: var(--salmon-soft);
  color: var(--salmon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-image .badge strong {
  display: block;
  font-size: 13px;
  color: var(--gray-900);
}

.hero-image .badge small {
  font-size: 11px;
  color: var(--gray-500);
}

.hero-image .floating-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.hero-image .floating-tag .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.stat-card {
  text-align: center;
  padding: 8px 4px;
}

.stat-card .num {
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.stat-card .num .small {
  font-size: 16px;
  color: var(--salmon);
}

.stat-card .label {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: var(--salmon-soft);
  color: var(--salmon-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--gray-900);
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-header h2 .highlight {
  color: var(--salmon);
}

.section-header p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== FEATURES GRID ========== */
.features {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.feature-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--salmon-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--salmon);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--gray-900);
  font-weight: 700;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ========== FEATURE CARD WITH IMAGE ========== */
.feature-card-image {
  padding: 0;
  overflow: hidden;
}

.feature-card-image .img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card-image:hover img {
  transform: scale(1.06);
}

.feature-card-image .content {
  padding: 22px 24px 26px;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 4/4.5;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-img.main {
  grid-row: span 2;
}

.about-img.secondary {
  aspect-ratio: 4/3;
}

.about-content h3 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--gray-900);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.about-content > p {
  color: var(--gray-500);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.65;
}

.about-list {
  list-style: none;
  margin-top: 24px;
}

.about-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
  font-size: 15px;
}

.about-list li::before {
  content: '✓';
  width: 26px;
  height: 26px;
  background: var(--salmon-soft);
  color: var(--salmon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* ========== GALLERY SECTION ========== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.gallery-grid .item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.gallery-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-grid .item:hover img {
  transform: scale(1.08);
}

.gallery-grid .item.tall {
  grid-row: span 2;
}

.gallery-grid .item.wide {
  grid-column: span 2;
}

.gallery-grid .item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.gallery-grid .item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PROS / CONTRAS ========== */
.proscons {
  background: var(--gray-50);
}

.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pros-box,
.cons-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
}

.proscons-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--gray-100);
}

.proscons-header .icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.pros-box .icon {
  background: var(--salmon-soft);
  color: var(--salmon);
}

.cons-box .icon {
  background: var(--gray-100);
  color: var(--gray-500);
}

.proscons-header h3 {
  font-size: 22px;
  color: var(--gray-900);
  font-weight: 700;
}

.proscons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proscons-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-700);
  line-height: 1.55;
  font-size: 14.5px;
}

.pros-box li::before {
  content: '▲';
  color: var(--salmon);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.cons-box li::before {
  content: '▼';
  color: var(--gray-300);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info {
  background: var(--white);
  color: var(--gray-900);
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-xs);
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 800;
}

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 26px;
  font-size: 15px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item .icon {
  width: 42px;
  height: 42px;
  background: var(--salmon-soft);
  color: var(--salmon);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-item .info strong {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  font-weight: 600;
}

.contact-item .info span,
.contact-item .info a {
  font-size: 14.5px;
  color: var(--gray-900);
  word-break: break-word;
  display: block;
  font-weight: 500;
}

.contact-item .info a:hover {
  color: var(--salmon);
}

.contact-form {
  background: var(--white);
  padding: 38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 800;
}

.contact-form > p {
  color: var(--gray-500);
  margin-bottom: 22px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  transition: all var(--transition);
  background: var(--white);
  color: var(--gray-900);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--salmon);
  box-shadow: 0 0 0 4px var(--salmon-soft);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: var(--gray-900);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--salmon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}

.form-status.success {
  display: block;
  background: var(--salmon-soft);
  color: var(--salmon-dark);
  border: 1px solid var(--salmon);
}

.form-status.error {
  display: block;
  background: #FEE;
  color: #C00;
  border: 1px solid #FCC;
}

/* ========== LEGAL PAGES ========== */
.legal-content {
  padding: 60px 0 80px;
  background: var(--white);
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--gray-900);
  font-weight: 800;
}

.legal-content .updated {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 28px;
}

.legal-content h2 {
  font-size: 21px;
  color: var(--gray-900);
  margin: 28px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--salmon);
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 15px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: var(--gray-50);
  color: var(--gray-900);
  padding: 70px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-banner h2 .highlight {
  color: var(--salmon);
}

.cta-banner p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 26px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
footer {
  background: var(--white);
  color: var(--gray-500);
  padding: 60px 0 0;
  border-top: 1px solid var(--gray-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-col h4 {
  color: var(--gray-900);
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 9px;
  list-style: none;
  line-height: 1.55;
}

.footer-col a {
  color: var(--gray-500);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--salmon);
}

.footer-col .logo {
  color: var(--gray-900);
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--gray-100);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--gray-500);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--salmon);
  color: var(--white);
  transform: translateY(-3px);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 110px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  animation: pulse-wa 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: var(--white);
}

.whatsapp-float i {
  font-size: 22px;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ========== QUERY BANNER ========== */
.query-banner {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 80;
  background: var(--white);
  border-left: 4px solid var(--salmon);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
  font-size: 13px;
  animation: slideIn 0.7s ease 0.5s backwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.query-banner strong {
  display: block;
  color: var(--salmon);
  margin-bottom: 4px;
  font-size: 14px;
}

.query-banner p {
  color: var(--gray-500);
  font-size: 12.5px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.query-banner .close-query {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  font-size: 14px;
}

/* ========== POLICY BANNER ========== */
.policy-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 -4px 24px rgba(17, 24, 39, 0.08);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 95;
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.policy-banner.hide {
  display: none !important;
}

.policy-banner .icon {
  width: 42px;
  height: 42px;
  background: var(--salmon-soft);
  color: var(--salmon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.policy-banner .text {
  flex: 1;
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.45;
}

.policy-banner .text strong {
  color: var(--gray-900);
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.policy-banner .text a {
  color: var(--salmon);
  font-weight: 600;
  text-decoration: underline;
}

.policy-banner .buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.policy-banner button {
  padding: 9px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 13.5px;
  transition: all var(--transition);
}

.policy-banner .btn-accept {
  background: var(--gray-900);
  color: var(--white);
}

.policy-banner .btn-accept:hover {
  background: var(--salmon);
  transform: translateY(-2px);
}

.policy-banner .btn-reject {
  background: var(--white);
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}

.policy-banner .btn-reject:hover {
  background: var(--gray-100);
  border-color: var(--gray-500);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .proscons-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    aspect-ratio: 4/3;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-grid .item.tall {
    grid-row: span 1;
  }

  .gallery-grid .item.wide {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    border-top: 1px solid var(--gray-100);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .query-banner {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    bottom: 100px;
    right: 16px;
    padding: 14px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }

  .policy-banner {
    flex-direction: column;
    text-align: center;
    padding: 14px;
  }

  .policy-banner .icon {
    margin: 0 auto;
  }

  .policy-banner .buttons {
    width: 100%;
  }

  .policy-banner button {
    flex: 1;
  }

  .top-bar {
    font-size: 11.5px;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
