/* ─── NAVIGATION (NAVBAR) ─────────────────────────────────────── */
nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 119, 182, 0.08);
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition), padding var(--transition);
}

nav.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.96);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.nav-logo span { 
  color: var(--primary-light); 
}

.nav-logo img {
  max-height: 72px;
  width: auto;
  display: block;
  transition: max-height var(--transition);
}

nav.scrolled .nav-logo img {
  max-height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 9px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { 
  color: var(--primary); 
}

.nav-links a:hover::after { 
  width: 100%; 
}

.nav-links li.nav-cta-item,
.nav-links li:has(.nav-cta) {
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--bg-pure) !important;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-height: 2.5rem;
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: visible;
  box-shadow: 0 4px 16px rgba(0, 119, 182, 0.22);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.32);
  color: var(--bg-pure) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Dropdown */
.nav-item-dropdown { 
  position: relative; 
}

.dropdown-toggle {
  background: transparent;
  border: none;
  color: var(--text-main);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.dropdown-toggle:hover { 
  color: var(--primary); 
}

.dropdown-toggle::after {
  content: '▾';
  font-size: 0.72rem;
  transition: transform var(--transition);
}

.nav-item-dropdown:hover .dropdown-toggle::after { 
  transform: rotate(180deg); 
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 260px;
  padding: 0.75rem 0;
  z-index: 200;
  animation: fadeUp 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.dropdown-menu li { 
  list-style: none; 
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.93rem;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--mist);
  color: var(--primary);
  padding-left: 1.8rem;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu,
.dropdown-menu.show { 
  display: block; 
}

/* Nav toggle for mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.nav-toggle:hover {
  background: var(--primary);
  color: var(--bg-pure);
}

.nav-contact-item { 
  display: none; 
}


/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-white,
.btn-whatsapp,
.btn-wa,
.btn-submit,
.btn-outline,
.nav-cta {
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--bg-pure);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  line-height: 1.2;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 119, 182, 0.35);
}

.btn-primary:hover::before { 
  opacity: 1; 
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg-pure);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1.2;
}

/* Light page heroes — secondary CTA on white/sky gradient */
.page-hero:not(.video-hero) .btn-secondary,
.page-hero:not(.video-hero) .hero-cta-row .btn-secondary {
  background: var(--bg-pure);
  color: var(--primary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-hero:not(.video-hero) .btn-secondary:hover {
  background: var(--accent);
  border-color: rgba(0, 119, 182, 0.22);
  color: var(--primary-dark);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--bg-pure);
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  line-height: 1.2;
}

.btn-outline {
  background: transparent;
  color: var(--bg-pure);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1.2;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.btn-whatsapp,
.btn-wa {
  background: #25d366;
  color: var(--bg-pure);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  cursor: pointer;
  line-height: 1.2;
}

.btn-whatsapp:hover,
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.35);
}

.cta-section .btn-white,
.cta-section .btn-whatsapp,
.cta-section .btn-wa,
.cta-section .btn-outline {
  margin: 0.35rem 0.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.cta-actions .btn-white,
.cta-actions .btn-whatsapp,
.cta-actions .btn-wa,
.cta-actions .btn-outline {
  margin: 0;
}

.btn-submit {
  background: var(--primary);
  color: var(--bg-pure);
  padding: 0.95rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.15);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 119, 182, 0.25);
}


/* ─── CARDS ───────────────────────────────────────────────────── */
.service-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 119, 182, 0.15);
}

.service-card:hover::before { 
  transform: scaleX(1); 
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #c8effc);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition), background var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.08);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  transition: stroke var(--transition);
}

.service-card:hover .service-icon svg { 
  stroke: var(--bg-pure); 
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card a {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.service-card a::after { 
  content: '→'; 
}

.service-card a:hover { 
  gap: 0.6rem; 
  color: var(--primary-dark);
}

/* Service Item (Listing Format) */
.service-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  background: linear-gradient(135deg, var(--accent), #b6e8f8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 240px;
  padding: 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.service-img img,
.service-img video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.service-content { 
  padding: 2.5rem 2.5rem 2.5rem 0; 
}

.service-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 119, 182, 0.1);
}

.service-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.service-content p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-bullets {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-bullets li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}

.service-bullets li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.service-content a {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-pure);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.service-content a:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Why Item */
.why-item {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--bg-pure);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 119, 182, 0.12);
}

.why-item .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), #c8effc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform var(--transition), background var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-item:hover .icon {
  transform: rotate(10deg) scale(1.08);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.why-item .icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition);
}

.why-item:hover .icon svg { 
  stroke: var(--bg-pure); 
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Simple Why Card */
.why-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  transition: color var(--transition);
}

.testimonial-card:hover::before { 
  color: #c8effc; 
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #f59e0b;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  position: relative;
  z-index: 1;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* Portfolio Card */
.portfolio-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 119, 182, 0.14);
}

.portfolio-card .portfolio-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(145deg, var(--mist), var(--accent));
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.portfolio-card .portfolio-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.06);
}

.portfolio-card .card-body {
  padding: 1.5rem 1.4rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-grow: 1;
}

.portfolio-card h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
}

.portfolio-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Article/Blog Card */
.article-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  min-height: 190px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-card .card-thumb {
  background: linear-gradient(135deg, var(--accent), #b6e8f8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  padding: 0;
  min-height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}

.article-card .card-thumb img,
.featured-article .card-thumb img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.featured-article .card-thumb {
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}

.featured-article .card-thumb img {
  min-height: 280px;
  border-radius: var(--radius-md);
}

.article-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.article-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
}

.article-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-card .tag {
  background: var(--accent);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  align-self: flex-start;
}

.article-card .read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.article-card .read-more::after {
  content: '→';
}

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: box-shadow var(--transition);
}

.featured-article:hover {
  box-shadow: var(--shadow-lg);
}

.featured-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-meta h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
}

.featured-meta p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.featured-meta .read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.featured-meta .read-more::after {
  content: '→';
}

.featured-article .card-thumb {
  background: linear-gradient(135deg, var(--accent), #b6e8f8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  padding: 2rem;
  height: 100%;
  min-height: 250px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
}

/* Value Card */
.value-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #b6e8f8;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Highlight Card */
.content-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Inquiry / Contact Info Cards */
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.inquiry-card {
  background: var(--bg-pure);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.inquiry-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.inquiry-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.inquiry-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.inquiry-card a {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
}

.inquiry-card a:hover {
  color: var(--primary-dark);
}

/* Hours Card */
.hours-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2.5rem;
}

.hours-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.hours-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hours-card p:last-child {
  margin-bottom: 0;
}


/* ─── WIDGETS & MISCELLANEOUS ─────────────────────────────────── */
/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 280px;
  padding: 0.95rem 1.25rem;
  background: linear-gradient(135deg, #ffffff, #e8f8ff);
  border: 1px solid rgba(0, 119, 182, 0.18);
  border-radius: 999px;
  color: var(--primary-dark);
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(1, 47, 92, 0.12);
  transition: transform 0.24s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.24s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: 700;
}

.floating-whatsapp-btn:hover,
.floating-whatsapp-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(1, 47, 92, 0.18);
}

.floating-whatsapp-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: #25d366;
  animation: whatsapp-pulse 2.5s ease-in-out infinite alternate;
}

.floating-whatsapp-btn span {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--primary-dark);
}

.floating-whatsapp-btn strong {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 800;
  margin-top: 0.1rem;
}

@keyframes whatsapp-pulse {
  from { transform: scale(1); opacity: 0.92; }
  to   { transform: scale(1.08); opacity: 1; }
}

/* Play Button Widget */
.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 2;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  animation: pulse-ring 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.play-btn::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  animation: pulse-ring 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.7s infinite;
}

.play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 40px rgba(72, 202, 228, 0.35);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--bg-pure);
  margin-left: 4px; /* offset visual center */
}

/* Location Pills and Filters */
.location-pill {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  cursor: default;
}

.location-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  background: var(--accent);
}

.location-pill span {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 0.25rem;
}

.loc-tag {
  background: var(--accent);
  border: 1px solid rgba(0, 119, 182, 0.12);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 100px;
}

.filter-btn {
  background: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}

/* FAQ Accordion UI */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover { 
  border-color: var(--primary-light); 
  box-shadow: var(--shadow-md); 
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.45;
  margin: 0;
  transition: color var(--transition);
}

.faq-item.active .faq-question h3 { 
  color: var(--primary); 
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary-light);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
              padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0 1.75rem;
}

.faq-answer p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}


/* ─── HERO & MEDIA HEROES ────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 12vh, 8rem) var(--section-x) clamp(4rem, 8vh, 5.5rem);
  text-align: center;
  background: linear-gradient(160deg, #0a2540 0%, #0077b6 50%, #023e8a 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}

/* subtle animated mesh overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(72, 202, 228, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(0, 150, 199, 0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.12) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 37, 64, 0.62) 0%,
    rgba(10, 37, 64, 0.48) 45%,
    rgba(10, 37, 64, 0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  animation: fadeUp 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(72, 202, 228, 0.25);
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--bg-pure);
  line-height: 1.2;
  max-width: 840px;
  margin: 0 auto 1.5rem;
  animation: fadeUp 0.7s 0.1s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  letter-spacing: -1px;
}

.hero h1 em {
  color: var(--primary-light);
  font-style: normal;
  background: linear-gradient(90deg, var(--primary-light), #7dd3fc, var(--primary-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  animation: fadeUp 0.7s 0.2s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.hero-btns,
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.hero-btns {
  animation: fadeUp 0.7s 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.hero-cta-row {
  margin-top: 0.25rem;
}

.page-hero .hero-cta-row {
  justify-content: flex-start;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.hero-stat {
  position: relative;
  padding: 0 1.5rem;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.75rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-pure);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Page Hero layout (About, Services, Contact, Blog) */
.page-hero {
  background: linear-gradient(165deg, var(--accent) 0%, var(--mist) 42%, var(--bg-pure) 100%);
  padding: clamp(5.5rem, 10vw, 6.75rem) var(--section-x) clamp(3.5rem, 6vw, 4.75rem);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.14) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.page-hero.video-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
}

.page-hero .hero-video {
  z-index: 0;
}

.page-hero .hero-overlay {
  background: rgba(10, 37, 64, 0.5);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero .section-label {
  margin-bottom: 1.25rem;
}

.page-hero.video-hero .section-label {
  color: #7dd3fc;
}

.page-hero.video-hero .section-label::before {
  background: linear-gradient(90deg, #7dd3fc, var(--primary-light));
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 800px;
  letter-spacing: -0.5px;
}

.page-hero.video-hero h1 {
  color: var(--bg-pure);
}

.page-hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.page-hero.video-hero h1 em {
  color: var(--primary-light);
}

.page-hero p {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 660px;
  line-height: 1.8;
}

.page-hero.video-hero p {
  color: rgba(255, 255, 255, 0.9);
}

/* ─── Service page split hero (copy + side media) ─────────────── */
.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) {
  padding-top: clamp(5rem, 9vw, 6.25rem);
  padding-bottom: clamp(3rem, 5vw, 4.25rem);
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  column-gap: clamp(2rem, 4.5vw, 3.5rem);
  row-gap: 0.75rem;
  align-items: center;
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .hero-tag {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 2;
  justify-self: start;
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) h1 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
  max-width: 100%;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .container > p:not(.hero-tag) {
  grid-column: 1;
  grid-row: 3;
  max-width: 36rem;
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .hero-cta-row {
  grid-column: 1;
  grid-row: 4;
  margin-top: 0.75rem;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .hero-img,
.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .video-placeholder {
  grid-column: 2;
  grid-row: 1 / 5;
  margin-top: 0;
  width: 100%;
  max-width: min(400px, 100%);
  justify-self: end;
  align-self: center;
  min-height: 0;
  height: auto;
  max-height: min(500px, 62vh);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-xl);
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .hero-img::after,
.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 -40px 80px rgba(10, 37, 64, 0.12);
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .hero-img img,
.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .hero-img video,
.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .video-placeholder img,
.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .video-placeholder video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  box-shadow: none;
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .video-placeholder:has(img) .play-btn,
.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .video-placeholder:has(img) > p {
  display: none;
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .video-placeholder:not(:has(img)) {
  background: linear-gradient(145deg, #0a2540 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.page-hero:not(.video-hero):has(.hero-img, .video-placeholder) .video-placeholder:not(:has(img)) > p {
  position: relative;
  z-index: 2;
  font-size: 0.92rem;
  max-width: 16rem;
  line-height: 1.5;
  padding: 0 1rem;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.hero-cta-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-img,
.video-placeholder {
  background: linear-gradient(135deg, var(--accent), #b6e8f8);
  border-radius: var(--radius-lg);
  min-height: clamp(280px, 42vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  text-align: center;
  padding: 0;
  margin-top: var(--gap-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 119, 182, 0.1);
}

/* Default hero media (non-split pages) keeps stacked spacing */
.page-hero:not(:has(.hero-img, .video-placeholder)) .hero-img,
.page-hero:not(:has(.hero-img, .video-placeholder)) .video-placeholder {
  margin-top: var(--gap-lg);
}

.video-placeholder {
  flex-direction: column;
  gap: 1rem;
}

.video-placeholder .play-btn {
  position: absolute;
  z-index: 2;
}

/* Image wrappers & Placeholders */
.about-img-placeholder,
.img-placeholder,
.media-frame {
  background: linear-gradient(135deg, var(--accent), #b6e8f8);
  border-radius: var(--radius-lg);
  min-height: clamp(300px, 38vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 119, 182, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-img-placeholder img,
.img-placeholder img,
.media-frame img,
.media-frame video {
  position: absolute;
  inset: 0;
}

.about-img-placeholder:hover, .img-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: conic-gradient(from 0deg, transparent 80%, rgba(0,150,199,0.08) 100%);
  animation: borderRotate 8s linear infinite;
}

.reel-placeholder {
  background: linear-gradient(135deg, #0a2540, #0077b6);
  border-radius: var(--radius-lg);
  min-height: clamp(320px, 50vw, 520px);
  aspect-ratio: 16 / 9;
  max-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--bg-pure);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(72, 202, 228, 0.15);
  margin-inline: auto;
  max-width: 100%;
}

.reel-placeholder .reel-video {
  border-radius: 0;
  box-shadow: none;
}

.reel-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(72,202,228,0.2) 0%, transparent 60%);
  z-index: 1;
}

.reel-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.reel-placeholder p {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  font-weight: 500;
  max-width: 400px;
}


/* ─── SECTIONS SPECIFIC ───────────────────────────────────────── */
/* Section backgrounds */
.why-section,
.benefits-section,
.faq-section,
.mission-section {
  background: var(--bg-light);
}

.goa-section {
  background: linear-gradient(180deg, var(--bg-pure) 0%, var(--mist) 100%);
}

.process-section {
  background: var(--bg-pure);
}

.reel-section {
  background: linear-gradient(165deg, var(--mist) 0%, var(--accent) 55%, var(--bg-pure) 100%);
}

/* Benefit cards (service / blog pages) */
.benefit-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 119, 182, 0.14);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), #c8effc);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), background var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: rotate(-4deg) scale(1.05);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition);
}

.benefit-card:hover .benefit-icon svg {
  stroke: var(--bg-pure);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap-md);
  margin-top: var(--gap-sm);
}

.process-step {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #b6e8f8;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Portfolio filters */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: calc(var(--gap-md) * -0.5);
  margin-bottom: var(--gap-md);
}

/* Showcase cards */
.showcase-card {
  background: var(--bg-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 119, 182, 0.14);
}

.showcase-card .card-body {
  padding: 1.5rem 1.35rem;
}

.showcase-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.showcase-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-accent {
  color: var(--primary-light);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.stat-item { 
  text-align: center; 
  color: var(--bg-pure); 
}

.stat-item strong { 
  display: block; 
  font-family: var(--font-heading);
  font-size: 2.4rem; 
  font-weight: 800; 
  margin-bottom: 0.25rem;
}

.stat-item span { 
  font-size: 0.85rem; 
  opacity: 0.85; 
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Team Note Block */
.team-note {
  background: var(--accent);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  font-size: 0.98rem;
  color: var(--text-main);
  max-width: 680px;
  line-height: 1.75;
}

.team-note strong {
  color: var(--primary-dark);
}

/* Pricing Note Block */
.pricing-note {
  background: linear-gradient(135deg, var(--accent), var(--mist));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 780px;
}

.pricing-note h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.pricing-note p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

.pricing-note a {
  color: var(--primary);
  font-weight: 600;
}


/* ─── CONTACT FORM & LAYOUTS ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.form-group { 
  margin-bottom: 1.5rem; 
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #d0e8f5;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  color: var(--text-main);
  background: var(--bg-pure);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* Contact Info Area */
.contact-grid aside,
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-grid aside > h2,
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
}

.contact-method:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.contact-method-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.contact-method-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-method-text a {
  color: var(--primary);
  font-weight: 600;
}

.contact-method-text a:hover {
  color: var(--primary-dark);
}

.contact-grid aside .whatsapp-btn,
.contact-grid aside .instagram-btn,
.contact-info .whatsapp-btn,
.contact-info .instagram-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--bg-pure);
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-grid aside .whatsapp-btn,
.contact-info .whatsapp-btn {
  background: linear-gradient(135deg, #2ee06a, #25d366);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
  margin-top: 0;
}

.contact-grid aside .whatsapp-btn:hover,
.contact-info .whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  color: var(--bg-pure);
}

.contact-grid aside .instagram-btn,
.contact-info .instagram-btn {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  box-shadow: 0 6px 20px rgba(221, 42, 123, 0.22);
}

.contact-grid aside .instagram-btn:hover,
.contact-info .instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(221, 42, 123, 0.3);
  color: var(--bg-pure);
}

.contact-grid aside .whatsapp-btn svg,
.contact-grid aside .instagram-btn svg,
.contact-info .whatsapp-btn svg,
.contact-info .instagram-btn svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  flex-shrink: 0;
}

.contact-grid aside .whatsapp-btn svg,
.contact-info .whatsapp-btn svg {
  fill: var(--bg-pure);
}

.contact-grid aside .instagram-btn svg,
.contact-info .instagram-btn svg {
  stroke: var(--bg-pure);
  fill: none;
  stroke-width: 2;
}

.contact-grid aside .whatsapp-btn div,
.contact-grid aside .instagram-btn div,
.contact-info .whatsapp-btn div,
.contact-info .instagram-btn div {
  min-width: 0;
  flex: 1;
}

.contact-grid aside .whatsapp-btn span,
.contact-grid aside .instagram-btn span,
.contact-info .whatsapp-btn span,
.contact-info .instagram-btn span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  opacity: 0.92;
  font-weight: 400;
  margin-top: 0.2rem;
  line-height: 1.4;
}

.contact-grid aside .hours-card,
.contact-info .hours-card {
  margin-top: 0.5rem;
}


/* ─── CALL TO ACTION (CTA) ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #023e8a, var(--primary), var(--primary-light));
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  text-align: center;
  color: var(--bg-pure);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 36rem;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-section .btn-white + .btn-wa,
.cta-section .btn-white + .btn-whatsapp,
.cta-section .btn-white + .btn-outline {
  margin-left: 0;
}


/* ─── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--text-main);
  color: #94a3b8;
  padding: clamp(4rem, 7vw, 5.5rem) var(--section-x) 2.25rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.25rem);
  max-width: var(--container-max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.footer-brand .nav-logo {
  color: var(--bg-pure);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 290px;
}

footer h4 {
  color: var(--bg-pure);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer ul li a {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

footer ul li a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.footer-meta {
  font-size: 0.9rem;
  color: #94a3b8;
}
