/* --- Design System & Variables --- */
:root {
  --primary-gold: #DAB43E;
  --primary-gold-dark: #b8932c;
  --secondary-gold: #7A6623;
  --bg-color: #FAFAF9; /* off-white pro design limpo */
  --bg-color-alt: #FFFFFF;
  --text-dark: #2A2A2A;
  --text-light: #666666;
  --header-height: 80px;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 40px rgba(218, 180, 62, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--bg-color-alt);
}

.text-center {
  text-align: center;
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.w-100 { width: 100%; }

/* --- Highlighting --- */
.highlight {
  color: var(--primary-gold);
  font-style: italic;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-body);
  border: none;
}

.btn-primary {
  background: var(--primary-gold);
  color: #fff;
  box-shadow: 0 4px 15px rgba(218, 180, 62, 0.3);
}

.btn-primary:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(218, 180, 62, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
}

.btn-outline:hover {
  background: var(--primary-gold);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary-gold);
}

/* Pulse Animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(218, 180, 62, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(218, 180, 62, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(218, 180, 62, 0); }
}

.pulse-btn {
  animation: pulse 2.5s infinite;
}

.pulse-btn-subtle {
  animation: pulse 3s infinite;
  animation-delay: 1s;
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background: var(--primary-gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 70px;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

header.scrolled .logo img {
  height: 45px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

header.scrolled .nav-links a {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

header.scrolled .nav-links a::after {
  background-color: #fff;
}

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

.mobile-menu-icon {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-gold);
  cursor: pointer;
  transition: color 0.3s ease;
}

header.scrolled .mobile-menu-icon {
  color: #fff;
}

.header-contact-btn {
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
}
.header-contact-btn:hover {
  background: var(--primary-gold);
  color: #fff;
}

header.scrolled .header-contact-btn {
  color: #fff;
  border-color: #fff;
}
header.scrolled .header-contact-btn:hover {
  background: #fff;
  color: var(--primary-gold);
}

/* Mobile Nav Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  padding: 40px 20px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../imagens/hero_bg.png') center/cover no-repeat;
  z-index: 1;
  transform: scale(1.05); /* For slight parallax or anim */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(250,250,249,0.9) 0%, rgba(250,250,249,0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

/* Hero Announcement Pill */
.hero-announcement {
  margin-bottom: 20px;
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(218, 180, 62, 0.45);
  padding: 6px 16px 6px 8px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(218, 180, 62, 0.15);
  transition: var(--transition);
}

.announcement-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 180, 62, 0.3);
  border-color: var(--primary-gold);
}

.pill-badge {
  background: var(--primary-gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.pill-arrow {
  font-size: 0.75rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.announcement-pill:hover .pill-arrow {
  transform: translateX(4px);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

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

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.image-wrapper img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-wrapper img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-gold);
  color: #fff;
  padding: 25px;
  border-radius: 50%;
  text-align: center;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(218, 180, 62, 0.4);
}

.experience-badge .number {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-top: 5px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary-gold);
  font-style: italic;
}

.text-content p {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-gold);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-item i {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.stat-item h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* --- Banner Protocolo --- */
.parallax-banner {
  position: relative;
  background: url('../../imagens/hero_bg.png') center/cover fixed; /* Using same bg since we only generated 1 */
  padding: 120px 0;
  color: #fff;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.85); /* Escurecendo bastante para dar contraste elegante */
}

.parallax-banner .container {
  position: relative;
  z-index: 2;
}

.parallax-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.parallax-banner .lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Laser CO2 Hybrid Section --- */
.laser-hybrid-section {
  background: radial-gradient(circle at 85% 30%, rgba(218, 180, 62, 0.12) 0%, rgba(20, 19, 18, 0.98) 60%), #141312;
  color: #F5F5F3;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(218, 180, 62, 0.2);
  border-bottom: 1px solid rgba(218, 180, 62, 0.2);
}

.laser-hybrid-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hybrid-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218, 180, 62, 0.15);
  color: var(--primary-gold);
  border: 1px solid rgba(218, 180, 62, 0.35);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.laser-hybrid-content .section-title {
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 2.7rem;
}

.hybrid-tagline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--primary-gold);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hybrid-description {
  color: #D1D1CD;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hybrid-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 35px;
}

.hybrid-feature-item,
.feature-item-highlight {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(218, 180, 62, 0.15);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.feature-item-highlight {
  background: rgba(218, 180, 62, 0.07);
  border-color: rgba(218, 180, 62, 0.35);
}

.hybrid-feature-item:hover,
.feature-item-highlight:hover {
  transform: translateY(-3px);
  background: rgba(218, 180, 62, 0.1);
  border-color: rgba(218, 180, 62, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hybrid-features-grid .feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(218, 180, 62, 0.15);
  color: var(--primary-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hybrid-features-grid h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.hybrid-features-grid p {
  font-size: 0.82rem;
  color: #B5B5B0;
  line-height: 1.4;
  margin: 0;
}

.hybrid-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 16px 36px;
}

/* Gallery / Visuals */
.laser-hybrid-visuals {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-card-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(218, 180, 62, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #0d0d0d;
}

.gallery-card-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.gallery-card-main:hover img {
  transform: scale(1.03);
}

.gallery-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(18, 17, 16, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(218, 180, 62, 0.25);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-card-badge .device-tag {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-card-badge .device-sub {
  color: #C2C2BE;
  font-size: 0.8rem;
}

.gallery-card-floating {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(218, 180, 62, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  max-height: 220px;
}

.gallery-card-floating img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 0.5s ease;
}

.gallery-card-floating:hover img {
  transform: scale(1.03);
}

.floating-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(18, 17, 16, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(218, 180, 62, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-badge-tag i {
  color: var(--primary-gold);
}

/* Featured card in Services Grid */
.service-card-highlight {
  position: relative;
  border: 2px solid var(--primary-gold);
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF7 100%);
}

.card-badge-novo {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.card-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-gold-dark);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 15px;
  transition: var(--transition);
}

.card-action-link:hover {
  color: var(--primary-gold);
  gap: 10px;
}

/* --- Services Section --- */
.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(218, 180, 62, 0.2);
}

.service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(218, 180, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .icon-wrapper {
  background: var(--primary-gold);
}

.service-card .icon-wrapper i {
  font-size: 1.8rem;
  color: var(--primary-gold);
  transition: var(--transition);
}

.service-card:hover .icon-wrapper i {
  color: #fff;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Google Reviews / Prova Social Section --- */
.reviews-section {
  background: #FFFFFF;
  position: relative;
  padding: 100px 0;
}

.google-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #374151;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.google-badge-top .google-icon {
  display: block;
}

.google-rating-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 15px;
  padding: 12px 26px;
  background: #FAF9F6;
  border-radius: 50px;
  border: 1px solid rgba(218, 180, 62, 0.25);
}

.google-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1;
}

.google-stars {
  color: #FBBC05;
  font-size: 1.15rem;
  display: flex;
  gap: 3px;
}

.google-reviews-count {
  font-size: 0.92rem;
  color: #4B5563;
  font-weight: 500;
}

.google-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid #ECEBE6;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(218, 180, 62, 0.12);
  border-color: rgba(218, 180, 62, 0.4);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #4285F4, #34A853); }
.avatar-2 { background: linear-gradient(135deg, #EA4335, #FBBC05); }
.avatar-3 { background: linear-gradient(135deg, #DAB43E, #A67C00); }

.reviewer-info {
  flex-grow: 1;
}

.reviewer-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 3px 0;
}

.reviewer-status {
  font-size: 0.78rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 5px;
}

.reviewer-status i {
  color: #34A853;
}

.google-g-small {
  color: #4285F4;
  font-size: 1.25rem;
  opacity: 0.9;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FBBC05;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.review-date {
  color: #9CA3AF;
  font-size: 0.78rem;
  margin-left: 8px;
  font-weight: 400;
}

.review-comment {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
  flex-grow: 1;
}

.reviews-footer {
  margin-top: 45px;
}

/* --- Location Section --- */
.location-section {
  background: #FAF9F6;
  position: relative;
  padding: 100px 0;
  border-top: 1px solid #EFEFEA;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218, 180, 62, 0.12);
  color: var(--primary-gold-dark);
  border: 1px solid rgba(218, 180, 62, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.location-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
}

.detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid #ECEBE6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.detail-item:hover {
  transform: translateX(4px);
  border-color: rgba(218, 180, 62, 0.4);
}

.detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(218, 180, 62, 0.12);
  color: var(--primary-gold-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.detail-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 4px 0;
}

.detail-text p {
  color: #4B5563;
  font-size: 0.95rem;
  margin: 0 0 3px 0;
  font-weight: 500;
}

.detail-text .sub-detail {
  font-size: 0.82rem;
  color: #9CA3AF;
}

.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-maps, .btn-waze {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-maps {
  background: #1A73E8;
  color: #FFFFFF;
}

.btn-maps:hover {
  background: #1557B0;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 115, 232, 0.3);
}

.btn-waze {
  background: #33CCFF;
  color: #0E3854;
}

.btn-waze:hover {
  background: #1CB5EA;
  color: #0E3854;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(51, 204, 255, 0.35);
}

.location-map-wrapper {
  position: relative;
}

.map-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(218, 180, 62, 0.25);
  background: #FFFFFF;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
}

.map-overlay-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(218, 180, 62, 0.3);
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.map-overlay-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(218, 180, 62, 0.15);
  color: var(--primary-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.map-overlay-badge strong {
  display: block;
  font-size: 0.9rem;
  color: #1F2937;
}

.map-overlay-badge p {
  margin: 0;
  font-size: 0.78rem;
  color: #6B7280;
}

/* --- Footer --- */
.footer {
  background: #111111; /* Dark aesthetic footer */
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #aaa;
  margin-bottom: 25px;
  max-width: 300px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  margin-right: 10px;
}

.social-links a:hover {
  background: var(--primary-gold);
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #fff;
  font-family: var(--font-body);
}

.footer-links ul li, .footer-contact ul li {
  margin-bottom: 15px;
  color: #aaa;
}

.footer-links ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact ul li i {
  color: var(--primary-gold);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-contact a {
  color: #aaa;
}
.footer-contact a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

.pulse-btn {
  animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Ensure targeted sections and elements are always visible */
:target, :target * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.laser-hybrid-content,
.laser-hybrid-visuals {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* --- Animations (Intersection Observer Targets) --- */
.fade-in { opacity: 0; transition: opacity 1s ease; }
.fade-in.appear { opacity: 1; }

.slide-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.slide-up.appear { opacity: 1; transform: translateY(0); }

.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in-up.appear { opacity: 1; transform: translateY(0); }

.fade-in-left { opacity: 0; transform: translateX(-40px); transition: all 1s ease; }
.fade-in-left.appear { opacity: 1; transform: translateX(0); }

.fade-in-right { opacity: 0; transform: translateX(40px); transition: all 1s ease; }
.fade-in-right.appear { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: 2; margin: 0 auto; max-width: 500px; }
  .about-text { order: 1; }
  .experience-badge { right: -10px; bottom: -10px; width: 120px; height: 120px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Laser CO2 Hybrid Responsive */
  .laser-hybrid-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .laser-hybrid-content .section-title {
    font-size: 2.3rem;
  }
  .laser-hybrid-visuals {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .gallery-card-main img {
    height: 300px;
  }

  /* Reviews & Location Responsive (Tablet) */
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 40px auto 0;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-card iframe {
    height: 360px;
  }
}

@media (max-width: 768px) {
  nav { display: none; }
  .mobile-menu-icon { display: block; }
  .hero { text-align: center; }
  .hero-overlay {
      background: linear-gradient(to right, rgba(250,250,249,0.95) 0%, rgba(250,250,249,0.9) 100%);
  }
  .hero h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .parallax-banner h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Laser CO2 Hybrid Mobile */
  .laser-hybrid-content .section-title {
    font-size: 2rem;
  }
  .hybrid-tagline {
    font-size: 1.15rem;
  }
  .hybrid-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-card-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 14px;
  }
  .gallery-card-main img {
    height: 240px;
  }
  .gallery-card-floating img {
    height: 180px;
  }
  .hybrid-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Reviews & Location Mobile */
  .reviews-section,
  .location-section {
    padding: 70px 0;
  }
  .google-rating-summary {
    border-radius: 20px;
    padding: 14px 18px;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .location-actions {
    flex-direction: column;
  }
  .btn-maps, .btn-waze {
    width: 100%;
    justify-content: center;
  }
  .map-overlay-badge {
    position: static;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid #ECEBE6;
  }
  .map-card iframe {
    height: 300px;
  }
}

