/* =========================
   CSS VARIABLES (COLOR SCHEME)
========================= */
:root {
  --bg: #0d1117;
  --panel: #161b22;
  --panel-2: #1f2630;
  --text: #e6edf3;
  --muted: #9da7b3;
  --border: #2d3742;
  --pink: #ee5fa3;
  --pink-dark: #c54281;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: 
    radial-gradient(circle at top right, rgba(238, 95, 163, 0.12), transparent 25%),
    radial-gradient(circle at bottom left, rgba(238, 95, 163, 0.08), transparent 20%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

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

main {
  padding: 40px 20px;
}

section {
  margin-bottom: 40px;
}

h1, h2, h3, h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

p {
  margin-bottom: 10px;
}

ul {
  margin-top: 10px;
  padding-left: 20px;
}

a {
  color: var(--pink);
}

a:hover {
  color: rgba(238, 95, 163, 0.8);
}

/* =========================
   HEADER
========================= */
.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

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

/* =========================
   LOGO
========================= */
.logo {
  width: 120px;
  height: auto;
}

/* =========================
   NAVIGATION
========================= */
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--pink);
}

/* =========================
   HERO
========================= */
.hero {
  background: linear-gradient(135deg, rgba(238, 95, 163, 0.12), rgba(31, 38, 48, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero p {
  max-width: 750px;
  margin: 0 auto 25px;
  color: var(--muted);
}

.hero-points {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
  text-align: center;
}

.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  margin: 5px;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: var(--panel-2);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--border);
}

.btn-whatsapp {
  background: #25D366;
  border: 1px solid #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* =========================
   SERVICES
========================= */
.services h2 {
  text-align: center;
  margin-bottom: 20px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
}

.service-card {
  width: 48%;
  margin: 1%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: 0.2s ease;
  box-sizing: border-box;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--pink);
  background: var(--panel-2);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 0;
}

/* =========================
   AREAS
========================= */
.areas h2 {
  text-align: center;
  margin-bottom: 30px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.area {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

.area:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--panel-2);
}

/* =========================
   WHY
========================= */
.why {
  padding: 50px 0;
}

.why h2 {
  text-align: center;
  margin-bottom: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.why-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  height: 100%;
  box-sizing: border-box;
}

.why-item h3 {
  margin-bottom: 10px;
  color: var(--pink);
}

/* =========================
   REVIEWS
========================= */
.reviews {
  padding: 50px 0;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 15px;
}

.reviews-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.review-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.review-card h3,
.review-card h4 {
  margin: 0 0 8px 0;
  color: var(--pink);
  font-size: 1rem;
}

.reviews-link {
  text-align: center;
  margin-top: 25px;
}

.google-maps-link {
  text-align: center;
  margin-top: 12px;
}

/* =========================
   RECENT WORK CAROUSEL
========================= */
.recent-work h2 {
  text-align: center;
  margin-bottom: 15px;
}

.recent-work p {
  max-width: 800px;
  margin: 0 auto 25px;
  text-align: center;
}

.work-carousel {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 500px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--panel-2);
}

/* ARROWS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 5;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}

.carousel-btn.prev {
  left: 14px;
}

.carousel-btn.next {
  right: 14px;
}

/* DOTS */
.carousel-dots {
  text-align: center;
  margin-top: 18px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: var(--muted);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--pink);
}

/* =========================
   CTA STRIP
========================= */
.cta-strip {
  background: var(--panel-2);
  border: 1px solid var(--border);
  color: var(--text);
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-strip h2 {
  margin-bottom: 10px;
}

.cta-strip p {
  margin-bottom: 20px;
  color: var(--muted);
}

.cta-strip .btn {
  background: var(--pink);
}

/* =========================
   CONTACT
========================= */
.contact h2 {
  text-align: center;
  margin-bottom: 15px;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.contact-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: 25px;
}

.contact-info {
  flex: 1;
  background: var(--panel);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 500;
  box-sizing: border-box;
  box-shadow: var(--shadow);
  color: var(--text);
}

.contact-form {
  flex: 2;
  background: var(--panel);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--text);
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form button {
  margin-top: 10px;
}

.honeypot-field {
  display: none;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--panel-2);
  color: var(--text);
  padding: 40px 20px 20px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-grid div {
  width: 30%;
}

.footer-grid h3 {
  margin-bottom: 10px;
  color: var(--pink);
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--pink);
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 15px;
  color: var(--muted);
}

/* =========================
   STICKY BUTTONS
========================= */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--pink);
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
  box-shadow: var(--shadow);
}

.sticky-call:hover {
  background: var(--pink-dark);
  color: #fff;
}

.sticky-whatsapp {
  position: fixed;
  bottom: 75px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
  box-shadow: var(--shadow);
}

.sticky-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

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

  .main-nav {
    flex-direction: column;
  }

  .main-nav a {
    margin: 5px 0;
  }

  .service-card,
  .footer-grid div {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .carousel-track {
    height: 300px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .logo {
    width: 100px;
  }
}

@media (min-width: 768px) {
  .sticky-call,
  .sticky-whatsapp {
    display: none;
  }
}
