/* ============================================
   BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f6f7f9;
  color: #1f3326;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: #0d3a31;
  padding: 8px 20px;
  font-size: 0.875rem;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}

.top-bar a {
  color: #a7f3d0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: #fff;
}

.top-bar a:hover .fa-instagram {
  color: #e1306c;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: #154c43;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  flex-shrink: 0;
}

.site-logo {
  max-height: 58px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: #d1fae5;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.main-nav .nav-cta {
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  margin-left: 8px;
}

.main-nav .nav-cta:hover {
  background: #16a34a;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  color: #ffffff;
  text-align: center;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/profesional-claning-in-australia (1).jpeg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 58, 49, 0.88) 0%, rgba(21, 76, 67, 0.78) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 0.9s ease-out;
}

.hero-tag {
  display: inline-block;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #86efac;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0.92;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-trust {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  color: #4ade80;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(34, 197, 94, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  padding: 28px 42px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #154c43;
  line-height: 1;
  margin-bottom: 5px;
}

.stat span {
  font-size: 0.82rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: #e5e7eb;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-light {
  padding: 90px 20px;
  background: #f6f7f9;
}

.section-dark {
  padding: 90px 20px;
  background: #154c43;
  color: #e5f5ee;
}

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

.section-tag {
  display: inline-block;
  background: #ecfdf5;
  color: #065f46;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-dark .section-tag {
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #154c43;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header.light h2 {
  color: #fff;
}

.section-header p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.75;
}

.section-header.light p {
  color: #a7f3d0;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1.5px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  border-color: #22c55e;
}

.service-card.dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card.dark:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(34, 197, 94, 0.5);
}

.service-card.dark h3 {
  color: #fff;
}

.service-card.dark p {
  color: #a7f3d0;
}

.service-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: #065f46;
}

.service-card.dark .service-icon {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #154c43;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ============================================
   NDIS INFO ROW
   ============================================ */
.ndis-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ndis-badges-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ndis-badge {
  background: #ecfdf5;
  color: #065f46;
  border: 1.5px solid #22c55e;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ndis-badge i {
  color: #22c55e;
}

/* ============================================
   CHECKLIST ROW
   ============================================ */
.checklist-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 10px;
}

.check-item {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #d1fae5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-item i {
  color: #4ade80;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: linear-gradient(135deg, #0d3a31 0%, #154c43 100%);
  padding: 70px 20px;
}

.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13, 58, 49, 0.9));
  padding: 50px 20px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.gallery-caption {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 20px;
  color: #a7f3d0;
  text-align: center;
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gallery-caption i {
  color: #4ade80;
  margin-right: 6px;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 48px 52px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.form-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #22c55e;
  border-bottom: 2px solid #f0fdf4;
  padding-bottom: 10px;
  margin-bottom: 22px;
  margin-top: 32px;
}

.form-group-title:first-child {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  margin-bottom: 20px;
}

.field label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #1f3326;
  background: #f9fafb;
  transition: all 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #22c55e;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

button[type="submit"] {
  width: 100%;
  background: #22c55e;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button[type="submit"]:hover:not(:disabled) {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(34, 197, 94, 0.4);
}

button[type="submit"]:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================================
   THANK YOU MESSAGE
   ============================================ */
.thank-you {
  display: none;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid #22c55e;
  padding: 52px 40px;
  border-radius: 14px;
  text-align: center;
  animation: fadeInUp 0.5s ease-out;
}

.thank-you i {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 20px;
  display: block;
}

.thank-you h3 {
  color: #065f46;
  font-size: 1.75rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.thank-you p {
  color: #047857;
  font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0d3a31;
  color: #9ca3af;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 20px 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
}

.footer-logo {
  max-width: 170px;
  height: auto;
  margin-bottom: 18px;
  display: block;
}

.footer-col p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #6b7280;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.contact-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list li a i {
  color: #22c55e;
  width: 16px;
  flex-shrink: 0;
}

.contact-list li a:hover .fa-instagram {
  color: #e1306c;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #4b5563;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-icon {
  position: fixed;
  bottom: 28px;
  right: 28px;
  font-size: 52px;
  color: #25d366;
  z-index: 2000;
  text-decoration: none;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.45));
  animation: pulse 2.5s infinite;
}

.whatsapp-icon:hover {
  transform: scale(1.15);
  animation: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #154c43;
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .site-header {
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 60px 20px 50px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stat {
    padding: 20px 24px;
  }

  .stat-divider {
    display: none;
  }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .section-light,
  .section-dark {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

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

  .gallery-section {
    padding: 50px 16px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-item img {
    height: 180px;
  }

  .gallery-item {
    border-radius: 10px;
  }

  .gallery-overlay {
    font-size: 0.8rem;
    padding: 30px 12px 14px;
  }

  .form-wrapper {
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 20px 40px;
  }

  .footer-col:first-child {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .section-header h2 {
    font-size: 1.5rem;
  }

  .ndis-info {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .ndis-badges-row {
    justify-content: center;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
*:focus-visible {
  outline: 3px solid #22c55e;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .whatsapp-icon, .site-header, .top-bar, footer, form { display: none; }
  .hero::before { display: none; }
  body { background: white; }
}
