/* ============================================
   FIT & FAST ARCHERY CLUB — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-blue: #1298E8;
  --cyan: #1FC7E8;
  --red: #F21717;
  --yellow: #FFF200;
  --white: #FFFFFF;
  --light-grey: #F3F3F3;
  --dark: #0a1628;
  --text: #2d3748;
  --text-muted: #64748b;
  --gradient: linear-gradient(135deg, var(--cyan) 0%, var(--primary-blue) 100%);
  --gradient-dark: linear-gradient(135deg, #0e7ab8 0%, #1298E8 50%, #1FC7E8 100%);
  --shadow: 0 4px 24px rgba(18, 152, 232, 0.15);
  --shadow-lg: 0 12px 48px rgba(18, 152, 232, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== HEADER / NAV ========== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 152, 232, 0.1);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--primary-blue);
  line-height: 1;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: var(--text);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
  background: rgba(18, 152, 232, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-whatsapp-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-nav svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(242, 23, 23, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(242, 23, 23, 0.45);
}

.btn-gradient {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-gradient:hover {
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-blue);
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    border-radius: 0 124px 124px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}

.hero-visual img {
    width: 83%;
    height: 100%;
    object-fit: cover;

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent,
            rgba(0, 255, 255, 0.5) 10%,
            transparent 50%,
        );
}

.hero-visual img::after {
    content: "";
    position: absolute;
    inset: -20px;
    pointer-events: none;

    box-shadow:
        inset 0 0 40px rgba(255,255,255,0.15),
        inset 0 0 80px rgba(255,255,255,0.08);

    border-radius: inherit;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 242, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(31, 199, 232, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 242, 0, 0.9) 0%, rgba(255, 200, 0, 0.9) 100%);
  color: var(--dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(255, 242, 0, 0.3);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========== SECTIONS ========== */

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.bg-grey {
  background: var(--light-grey);
}

.bg-gradient {
  background: var(--gradient);
  color: var(--white);
}

.bg-gradient h2,
.bg-gradient h3 {
  color: var(--white);
}

.bg-dark {
  background: var(--dark);
  color: var(--white);
}

.bg-dark h2,
.bg-dark h3 {
  color: var(--white);
}

/* ========== CARDS ========== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== SCHEDULE ========== */

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.schedule-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: transform var(--transition);
}

.schedule-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.schedule-card:hover {
  transform: translateY(-4px);
}

.schedule-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.schedule-time {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}

.schedule-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== CTA BANNER ========== */

.cta-banner {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🏹';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  opacity: 0.08;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

/* ========== FORMS ========== */

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(18, 152, 232, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
}

.form-success h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary-blue);
}

.form-success p {
  color: var(--text-muted);
}

.form-error {
  background: rgba(242, 23, 23, 0.08);
  border: 1px solid rgba(242, 23, 23, 0.25);
  color: #b91c1c;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.form-wrapper.hidden {
  display: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.content-error {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
  grid-column: 1 / -1;
}

.content-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

.blog-card-image img,
.article-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image {
  overflow: hidden;
}

.blog-card-emoji {
  font-size: 4rem;
}

.article-featured-img {
  height: 320px;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  display: block;
}

.article-actions {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.content-hint {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== GALLERY ========== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ========== BLOG ========== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.blog-card .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

/* ========== CONTACT ========== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--primary-blue);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* ========== PAGE HERO (inner pages) ========== */

.page-hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
  background: var(--gradient-dark);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

/* ========== ABOUT ========== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  background: var(--gradient);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
}

.value-item .value-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.value-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 2rem 0;
}

.stat-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
}

.stat-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ========== TRAINING ========== */

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--primary-blue);
  line-height: 1;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.motivation-block {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.motivation-block blockquote {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--white);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.motivation-block cite {
  color: var(--cyan);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
}

/* ========== ARTICLE ========== */

.article-content {
  max-width: 760px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-featured-image {
  height: 320px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 2rem;
}

/* ========== FOOTER ========== */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-tagline {
  color: var(--cyan);
  font-weight: 500;
}


.faq-list{
  max-width:900px;
  margin:0 auto;
}

.faq-item{
  background:#fff;
  border-radius:16px;
  margin-bottom:1rem;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.faq-item summary{
  cursor:pointer;
  padding:1.2rem 1.5rem;
  font-weight:600;
  list-style:none;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  float:right;
  font-size:1.2rem;
  transition:.3s;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-item p{
  padding:0 1.5rem 1.5rem;
  margin:0;
}

.map-wrapper{
  margin-top:1.5rem;
  border-radius:18px;
  overflow:hidden;
}

.map-wrapper iframe{
  width:100%;
  height:450px;
  border:none;
}

/* ========== WHATSAPP FLOAT ========== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: .25s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact a,
.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover,
.footer-links a:hover {
    text-decoration: underline;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8); }
}

/* ========== ANIMATIONS ========== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .hero-content {
  padding: 1rem 0;
}

  .hero-visual {
    order: -1;
    padding: 1rem 0 0;
    margin: 0;
    border-radius: 0;
    justify-content: center;
  }

  .hero-visual img {
    width: 100%;
    width: min(450px, 100vw);
    height: min(450px, 80vw);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-location {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .btn-whatsapp-nav span {
    display: none;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3.5rem 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .form-card {
    padding: 1.5rem;
  }
}
