* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #f8f9fa;
}

/* Header */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #5a6c7d;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2a5298;
}

/*.cta-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}
*/
.cta-button {
  white-space: nowrap;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 5rem 5%;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 2.0rem;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: white;
  color: #2a5298;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: white;
  color: #2a5298;
}

/* Services Section (main site) */
.services {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #7a8a9a;
}

.services-grid {
  display: grid;
  /*grid-template-columns: repeat(2, 1fr); /* exactly 2 per row */
  grid-template-columns: 2fr 2fr;
  gap: 2rem;
}
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 1fr); /* exactly 2 per row */
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  color: #5a6c7d;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* Contact Form */
.contact-container {
  max-width: 800px;
  margin: 4rem auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
  font-size: 1rem;
}

form {
  display: grid;
  gap: 1.5rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #34495e;
}

input, textarea, select {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.required {
  color: red;
}

/* Contact form services */
.contact-services-heading {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #34495e;
}

.contact-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 200px;
  row-gap: 0.75rem;
  padding: 0;
}

.contact-service {
  display: flex;
  align-items: center;
  min-height: 32px;
}

.contact-service input[type="checkbox"] {
  width: auto;
  margin-left: 0;
  margin-right: 8px;
}

.contact-service label,
.contact-service span {
  white-space: nowrap;
}

/* Submit button */
button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: linear-gradient(135deg, #5a6dd8, #6a3f91);
}

.message {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
}


/* Privacy Page Styles */
.privacy-body {
  background: #f8f9fa;
  color: #2c3e50;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  padding: 5rem 5%;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.privacy-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.privacy-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.privacy-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
}

.privacy-content p {
  max-width: 700px;           /* limits line length for readability */
  margin: 0 auto 1.5rem auto; /* centers the paragraph and adds spacing */
  line-height: 1.8;           /* improves vertical spacing */
  word-wrap: break-word;      /* ensures long words don't overflow */
}

.privacy-actions {
  text-align: center;
  margin-top: 2rem;
}

/* Auckland Hero Image */
.auckland_image-container {
  width: 90%;              /* container takes full width of parent */
  max-width: 600px;         /* optional: cap the max width */
  margin: 0 auto;           /* optional: center container */
  overflow: hidden;         /* prevents overflow if needed */
  position: relative;       /* useful if you want to add overlays later */
}


/* Responsive image */
.auckland_image-img {
  display: block;           /* removes inline spacing */
  width: 100%;              /* scales image to container width */
  height: auto;             /* maintains aspect ratio */
  object-fit: contain;      /* ensures full image fits inside */
}

/* Mark image */
/* Container ensures the image scales within its bounds */

.mark_image-container {
  width: 90%;              /* container takes full width of parent */
  max-width: 200px;         /* optional: cap the max width */
  margin: 0 auto;           /* optional: center container */
  overflow: hidden;         /* prevents overflow if needed */
  position: relative;       /* useful if you want to add overlays later */
}


/* Responsive image */
.mark_image-img {
  display: block;           /* removes inline spacing */
  width: 100%;              /* scales image to container width */
  height: auto;             /* maintains aspect ratio */
  object-fit: contain;      /* ensures full image fits inside */
}



/* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            background: #f8f9fa;
        }
        
        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .cta-container h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }
        
        .cta-container p {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 2rem;
        }
		
/* Stats Section */
        .stats {
            background: linear-gradient(135deg, #667eea, #764ba2);
            padding: 4rem 5%;
            margin: 3rem 0;
        }
        
        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }
        
        .stat-item {
            color: white;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.95;
        }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr; /* stack service cards on small screens */
  }

  .contact-form-row {
    grid-template-columns: 1fr; /* stack form fields on small screens */
  }

  .contact-services-grid {
    grid-template-columns: 1fr; /* stack checkboxes on small screens */
  }
  .privacy-content {
    column-count: 1;
  }
}






