* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1e24;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}

:root {
  --black: #1a1e24;
  --charcoal: #2a2f36;
  --steel: #5b6876;
  --teal: #0b6e6e;
  --mint: #e8f3f3;
  --white: #ffffff;
}

h1, h2, h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  padding: 30px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s;
  left: 0;
  right: 0;
}

header.scrolled {
  background: var(--white);
  padding: 15px 8%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.logo {
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--teal);
  font-weight: 400;
}

/* Desktop Navigation */
nav {
  display: flex;
  gap: 50px;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--teal);
}

/* Mobile toggle button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1497215842964-222b430dc094?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  width: 100%;
}

.hero-content {
  padding: 0 12%;
  max-width: 800px;
  color: white;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 30px;
  font-weight: 600;
  background: rgba(0,0,0,0.2);
  display: inline-block;
  padding: 8px 20px;
  backdrop-filter: blur(5px);
  border-left: 3px solid var(--teal);
}

.hero h1 {
  font-size: 72px;
  margin-bottom: 30px;
  color: white;
  line-height: 1.2;
}

.hero h1 .light {
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  display: block;
  font-size: 56px;
  margin-top: 10px;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.btn-primary {
  padding: 18px 40px;
  background: var(--teal);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--black);
}

.btn-outline {
  padding: 18px 40px;
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(255,255,255,0.1);
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-badges span {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badges span i {
  color: var(--teal);
}

/* SERVICES + PRICING COMBINED */
.services {
  padding: 80px 8%;
  background: var(--mint);
  width: 100%;
}

.section-header {
  margin-bottom: 60px;
  max-width: 600px;
}

.section-header h2 {
  font-size: 48px;
  color: var(--black);
  margin-bottom: 15px;
}

.section-header h2 span {
  color: var(--teal);
  font-style: italic;
}

.section-header p {
  color: var(--steel);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: white;
  padding: 30px 25px;
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 110, 110, 0.08);
  border-color: var(--teal);
}

.service-card.featured {
  border: 2px solid var(--teal);
  grid-column: span 3;
  max-width: 500px;
  margin: 0 auto;
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Space Mono', monospace;
}

.service-icon {
  font-size: 40px;
  color: var(--teal);
  margin-bottom: 15px;
  text-align: center;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--black);
  text-align: center;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  text-align: center;
  line-height: 1;
  margin-bottom: 5px;
}

.package-savings {
  text-align: center;
  color: var(--steel);
  font-size: 13px;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  flex-grow: 1;
}

.service-list li {
  padding: 8px 0;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dotted rgba(0,0,0,0.05);
  font-size: 14px;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li i {
  color: var(--teal);
  font-size: 14px;
  width: 18px;
}

.price-note {
  text-align: center;
  color: var(--teal);
  font-weight: 600;
  margin: 15px 0 5px;
  font-size: 14px;
}

/* ===== FIXED BUTTONS - CLEARLY VISIBLE ===== */
.service-card .btn-outline {
  border: 2px solid var(--teal) !important;
  color: var(--teal) !important;
  background: white !important;
  font-weight: 700 !important;
  padding: 14px 20px !important;
  border-radius: 6px !important;
  display: inline-block !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  margin-top: 15px !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 15px !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 2px 5px rgba(11, 110, 110, 0.1) !important;
}

.service-card .btn-outline:hover {
  background: var(--teal) !important;
  color: white !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(11, 110, 110, 0.3) !important;
}

.service-card .btn-outline:active {
  transform: translateY(-1px) !important;
}

/* Package button - even more prominent */
.service-card.featured .btn-primary {
  background: var(--teal) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 16px 20px !important;
  border-radius: 6px !important;
  border: none !important;
  display: inline-block !important;
  text-decoration: none !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 16px !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 5px 15px rgba(11, 110, 110, 0.3) !important;
  transition: all 0.3s ease !important;
  margin-top: 10px !important;
}

.service-card.featured .btn-primary:hover {
  background: var(--black) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(11, 110, 110, 0.4) !important;
}

/* Services footer link */
.services-footer {
  text-align: center;
  margin-top: 40px;
  color: var(--steel);
}

.services-footer a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.services-footer a:hover {
  text-decoration: underline;
}

/* ABOUT */
.about {
  padding: 100px 8%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.about-image {
  background: var(--mint);
  overflow: hidden;
  border-radius: 8px;
  max-width: 350px;
  justify-self: center;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.about-content p {
  color: var(--steel);
  margin-bottom: 20px;
  font-size: 16px;
}

.about-highlight {
  background: var(--mint);
  padding: 30px;
  margin: 30px 0;
  border-left: 4px solid var(--teal);
}

.signature {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  color: var(--teal);
  margin-top: 20px;
}

/* TESTIMONIALS - Styled but commented out in HTML */
.testimonials {
  padding: 100px 8%;
  background: var(--mint);
  width: 100%;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 48px;
  max-width: 400px;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.testimonial-card .quote {
  font-size: 48px;
  color: var(--teal);
  opacity: 0.2;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--steel);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 20px;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.author-info p {
  margin: 0;
  font-size: 13px;
  color: var(--steel);
}

/* CONTACT */
.contact {
  padding: 100px 8%;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--mint);
  width: 100%;
}

.contact-info {
  padding: 60px;
}

.contact-info h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--steel);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-method i {
  width: 50px;
  height: 50px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 20px;
}

.contact-method div p {
  margin: 0;
  color: var(--steel);
}

.contact-method strong {
  color: var(--black);
  display: block;
  margin-bottom: 4px;
}

.contact-form {
  padding: 60px;
  background: white;
}

.form-group {
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-family: 'Inter', sans-serif;
  transition: 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--teal);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--teal);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 20px;
}

.submit-btn:hover {
  background: var(--black);
}

/* WhatsApp button styling */
.contact-form a[href*="wa.me"] {
  display: inline-block;
  padding: 12px 25px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.2s;
}

.contact-form a[href*="wa.me"]:hover {
  background: #20b859;
  transform: translateY(-2px);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37,211,102,0.2);
  transition: 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  background: var(--black);
  color: white;
  padding: 60px 8% 30px;
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: 'Archivo', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-logo span {
  color: var(--teal);
}

.footer-main p {
  color: #b5aa9a;
  font-size: 14px;
}

.footer-links h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 500;
}

.footer-links a {
  color: #b5aa9a;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.2s;
}

.social-links a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #8f887d;
  font-size: 13px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    font-size: 18px;
    color: var(--black);
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero h1 .light {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 10px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card.featured {
    grid-column: span 1;
  }
  
  .about {
    grid-template-columns: 1fr;
  }
  
  .testimonials-track {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .contact-method {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  /* Make buttons even bigger on mobile for easy tapping */
  .service-card .btn-outline,
  .service-card.featured .btn-primary {
    padding: 16px 20px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero h1 .light {
    font-size: 26px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .contact-info, .contact-form {
    padding: 30px;
  }
}

