/* GENERAL */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f2f2f7; /* Soft light gray, easy on eyes */
  color: #222;
}

img {
  max-width: 100%;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* STICKY HEADER */
.sticky-header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* NAVIGATION */
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.brand-logo {
  width: 60px;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: #007bff;
  color: white;
}

.btn-primary:hover {
  background: #0056d2;
}

.btn-secondary {
  background: #444;
  color: white;
}

.btn-secondary:hover {
  background: #222;
}

.btn-large {
  padding: 14px 24px;
  font-size: 18px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 12px;
  margin-top: 20px;
}

.hero-logo {
  width: 120px;
  margin-bottom: 20px;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SERVICES */
.services {
  padding: 60px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* FOOTER */
.site-footer {
  background: #222;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  width: 80px;
}

/* FLOATING BUTTONS */
.floating-whatsapp,
.floating-book {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.floating-whatsapp {
  bottom: 20px;
  background: #25D366;
  font-size: 30px;
}

.floating-book {
  bottom: 100px;
  background: #007bff;
  font-size: 12px;
  padding: 5px;
  border: none;
}

/* MOBILE CALL BAR */
.mobile-call-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #007bff;
    text-align: center;
    padding: 12px 0;
    z-index: 999;
  }

  .mobile-call-bar a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
  }
}

/* ANIMATIONS */
.fade-in {
  animation: fadeIn 1.2s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
