@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --primary-navy: #0A192F;
  --primary-blue: #0A2540;
  --accent-light-blue: #00B4D8;
  --accent-cyan: #90E0EF;
  --bg-white: #FFFFFF;
  --bg-light-gray: #F8F9FA;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --border-radius: 12px;
  --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--accent-light-blue);
  color: var(--bg-white);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(0, 180, 216, 0.39);
}

.btn:hover {
  background-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 25, 47, 0.23);
  color: var(--bg-white);
}

/* Navigation */
nav {
  padding: 1.5rem 0;
  background-color: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  color: var(--accent-light-blue);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('./hero_window_cleaning.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  color: var(--bg-white);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero p {
  color: var(--accent-cyan);
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-phone {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bg-white);
  display: inline-block;
  margin-top: 1.5rem;
  border-bottom: 2px solid var(--accent-light-blue);
  padding-bottom: 0.5rem;
}

/* Services */
.services {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 2.5rem;
}

.service-content h3 {
  font-size: 1.8rem;
}

/* Suburbs Grid */
.suburbs {
  padding: 6rem 0;
  background-color: var(--bg-light-gray);
}

.suburbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.suburb-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--bg-white);
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.suburb-link:hover {
  background-color: var(--primary-navy);
  color: var(--bg-white);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

/* Footer */
footer {
  background-color: var(--primary-navy);
  color: white;
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent-light-blue); }

.copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
}
