@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --whatsapp: #22c55e;
  --whatsapp-hover: #16a34a;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 30px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky footer */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

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

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

/* Top bar */
.top-bar {
  background: var(--primary);
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-badge {
  background: var(--accent);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
  border-bottom: 3px solid var(--accent);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-badge {
  font-size: 0.75rem;
  background: #f1f5f9;
  color: #475569;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}

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

.nav a {
  font-weight: 600;
  color: var(--primary-light);
  font-size: 0.98rem;
  position: relative;
  padding: 4px 0;
}

.nav a:hover, .nav a.active {
  color: var(--accent);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
}

.whatsapp-btn-header {
  background: var(--whatsapp);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-btn-header:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,41,59,0.88) 100%), url('../images/banner.png') center/cover no-repeat;
  color: white;
  padding: 90px 0 100px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid var(--accent);
  color: #ffedd5;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent);
  display: inline-block;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.92;
  max-width: 640px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.5);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(34, 197, 94, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  background: rgba(255,255,255,0.05);
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
}

.hero-feature-list {
  list-style: none;
}

.hero-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-feature-list .check-icon {
  background: var(--accent);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Feature Strip */
.feature-strip {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-box {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 4px solid var(--accent);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-50%);
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 2rem;
  width: 54px;
  height: 54px;
  background: #fff7ed;
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-top: 12px;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-badge {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.card-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card:hover .card-link {
  gap: 10px;
}

/* Image Feature Block */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.showcase-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.showcase-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-img:hover img {
  transform: scale(1.04);
}

.showcase-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.9);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.showcase-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.check-list {
  list-style: none;
  margin-bottom: 30px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--primary-light);
  font-size: 1.02rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Image Gallery Carousel / Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 260px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.gallery-overlay h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* Emergency Call Banner */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-banner text {
  max-width: 650px;
}

.cta-banner h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
}

.cta-phone-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-top: 8px;
}

/* Regions Grid */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.region-card {
  background: white;
  border: 1px solid var(--border-color);
  padding: 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.region-card:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.region-card::before {
  content: '📍';
  font-size: 1rem;
}

/* FAQ Accordion */
.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  user-select: none;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Page Layout for Subpages */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.breadcrumbs a {
  color: #93c5fd;
}

.page-container {
  max-width: 1000px;
  margin: 50px auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.page-body h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 30px 0 16px;
  border-left: 4px solid var(--accent);
  padding-left: 14px;
}

.page-body h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin: 24px 0 12px;
}

.page-body p {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-body ul {
  margin: 0 0 24px 24px;
}

.page-body li {
  margin-bottom: 10px;
  font-size: 1.02rem;
  color: var(--text-main);
}

.cta-box {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px dashed var(--accent);
  padding: 35px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 40px 0 20px;
}

.cta-box h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 70px 0 30px;
  margin-top: 60px;
}

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

.footer-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.98rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.seo-keywords {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-top: 30px;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.8;
}

.seo-keywords strong {
  color: #94a3b8;
  display: block;
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Floating Sticky Footer for Mobile */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 10px 16px;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.mobile-sticky-container {
  display: flex;
  gap: 12px;
}

.mobile-btn {
  flex: 1;
  padding: 12px;
  border-radius: 30px;
  font-weight: 800;
  text-align: center;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
}

.mobile-btn-call {
  background: var(--accent);
}

.mobile-btn-wp {
  background: var(--whatsapp);
}

/* Floating WhatsApp Button Desktop */
.floating-wp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-wp-btn:hover {
  transform: scale(1.1);
  background: var(--whatsapp-hover);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .hero { padding: 60px 0 80px; }
  .cta-banner-content { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: block; }
  .floating-wp-btn { display: none; }
  .page-container { padding: 25px; margin: 20px 10px; }
}
