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

:root {
  --primary-color: #0d1b2a;
  --secondary-color: #1b263b;
  --accent-color: #e0e1dd;
  --highlight-color: #e63946;
  --text-color: #e0e1dd;
  --bg-color: #0d1b2a;
  --card-bg: #1b263b;
  --font-main: 'Inter', sans-serif;
  --transition-speed: 0.3s
}

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

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

ul {
  list-style: none
}

h1,
h2,
h3 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  border-bottom: 2px solid var(--highlight-color);
  display: inline-block;
  padding-bottom: 0.5rem
}

p {
  margin-bottom: 1rem;
  color: #d0d5dd
}

header {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight-color);
  letter-spacing: -0.5px
}

nav ul {
  display: flex;
  gap: 20px
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  position: relative
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--highlight-color);
  transition: width var(--transition-speed)
}

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

.hero {
  padding: 160px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, #233d5a 0%, var(--bg-color) 70%)
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #aabbd1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem
}

.btn {
  display: inline-block;
  background-color: var(--highlight-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed)
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6)
}

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

.content-block {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05)
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem
}

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border-left: 3px solid var(--highlight-color);
  transition: background var(--transition-speed)
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.07)
}

.internal-links {
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px
}

.tag-link {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  border: 1px solid transparent
}

.tag-link:hover {
  border-color: var(--highlight-color);
  background: rgba(255, 255, 255, 0.15)
}

footer {
  background: #050b11;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.1)
}

@media (max-width:768px) {
  .nav-container {
    flex-direction: column;
    gap: 15px
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
  }

  .hero h1 {
    font-size: 2rem
  }

  .content-block {
    padding: 20px
  }


  body {
    padding-bottom: 60px
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 20px auto 0
}

.form-group {
  text-align: left
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #fff
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color var(--transition-speed);
  appearance: none;
}

.form-group select option {
  background-color: var(--secondary-color);
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--highlight-color);
  background: rgba(255, 255, 255, 0.1)
}

.form-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  display: none
}

.form-status.success {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid #28a745;
  display: block
}

.form-status.error {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid #dc3545;
  display: block
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.sticky-callbar {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
  /* Allow clicking through the container */
  padding: 0 20px;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .sticky-callbar {
    display: flex;
  }
}

.callbar-btn {
  pointer-events: auto;
  /* Re-enable clicks for buttons */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, filter 0.2s;
  animation: pulse-animation 2s infinite;
}

.callbar-btn span:not(.icon-circle) {
  display: none;
  /* Hide text on floating buttons */
}

.btn-call {
  background: #e63946;
}

.btn-whatsapp {
  background: #25d366;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.callbar-btn:hover {
  filter: brightness(110%);
  transform: scale(1.1);
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease
}

.google-rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3)
}

.google-logo {
  width: 20px;
  height: 20px
}

.rating-stars {
  display: flex;
  color: #fb8c00;
  gap: 2px
}

.rating-score {
  font-weight: 700;
  color: #3c4043;
  font-size: 1rem
}

.rating-text {
  color: #5f6368;
  font-size: 0.9rem;
  font-weight: 400
}