/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}



/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Half shade overlay - only covers left side */
.hero-overlay-half {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 85, 99, 0.95), rgba(11, 85, 99, 0.85), rgba(14, 116, 144, 0));
}

@media (max-width: 768px) {
  .hero-overlay-half {
    width: 100%;
    background: linear-gradient(to bottom, rgba(11, 85, 99, 0.92), rgba(11, 85, 99, 0.88));
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 77%;
  padding: 1rem 0 10rem 0;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 6rem;
  display: block;
}

/* Animations */
.fade-in {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.fade-in.delay-1 {
  animation-delay: 0.2s;
}

.fade-in.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #75C822;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background: #0E7490;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.hero .btn-primary {
  background: white;
  color: #75C822;
}

.hero .btn-primary:hover {
  background: #f9fafb;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #75C822;
}

.btn-outline {
  background: #f3f4f6;
  color: #374151;
}

.btn-outline:hover {
  background: #e5e7eb;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.flex-1 {
  flex: 1;
}

/* Sections */
.section {
  padding: 5rem 0;
  background: white;
}

.section-gray {
  background: linear-gradient(to bottom, #f9fafb, white);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 44px;
  }
}

.section-title.center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.75;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.content-box h2 {
  margin-bottom: 52px;
}

.text-content {
  margin-bottom: 2rem;
}

.text-content p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.center-text {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

/* Feature List */
.feature-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  color: #75C822;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Image Box */
.image-box {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-decoration {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  z-index: -1;
}

.decoration-1 {
  bottom: -1.5rem;
  right: -1.5rem;
  background: rgba(11, 85, 99, 0.1);
}

.decoration-2 {
  top: -1.5rem;
  left: -1.5rem;
  background: rgba(14, 116, 144, 0.1);
}

.decoration-3 {
  bottom: -1.5rem;
  left: -1.5rem;
  background: rgba(11, 85, 99, 0.1);
}

.decoration-4 {
  top: -1.5rem;
  right: -1.5rem;
  background: rgba(14, 116, 144, 0.1);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.text-center {
  text-align: center;
}

s .service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: rgba(11, 85, 99, 0.2);
  transform: translateY(-4px);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-cyan {
  background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

.gradient-teal {
  background: linear-gradient(135deg, #14b8a6, #10b981);
}

.gradient-emerald {
  background: linear-gradient(135deg, #10b981, #22c55e);
}

.service-icon svg {
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.service-description {
  color: #4b5563;
  line-height: 1.75;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-box-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(11, 85, 99, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-box-icon svg {
  color: #75C822;
}

.feature-box-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.feature-box-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
}

.highlight-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #0B5563, #0E7490);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.highlight-icon svg {
  color: white;
}

.highlight-text {
  color: #374151;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

/* Contact Info Box */
.contact-info-box {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

.contact-info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #75C822;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  color: white;
}

.contact-info-title {
  font-weight: 600;
  color: #111827;
}

.contact-info-subtitle {
  color: #4b5563;
  font-size: 0.875rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
}

.contact-info-item svg {
  color: #0B5563;
  flex-shrink: 0;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Equal height fix */
.contact-info-column--equal {
  height: 100%;
}

.contact-info-column--equal .contact-map {
  flex: 1;
  min-height: 0;
}

.contact-form-column--equal {
  height: 100%;
}

.contact-card--full-height {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-card--full-height .contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-card--full-height .contact-form .form-group:last-of-type {
  flex: 1;
}

.contact-card--full-height .contact-form .form-group:last-of-type .form-textarea {
  height: 100%;
  min-height: 100px;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: #75C822;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  color: white;
}

.contact-detail-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.contact-detail-text {
  color: #4b5563;
}

.contact-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  height: 16rem;
}

/* Contact Icon Animations */
.contact-detail-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Phone — ring shake */
@keyframes phoneRing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(-15deg);
  }

  30% {
    transform: rotate(15deg);
  }

  45% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(10deg);
  }

  75% {
    transform: rotate(-5deg);
  }

  90% {
    transform: rotate(5deg);
  }
}

.contact-detail:hover .contact-detail-icon--phone {
  animation: phoneRing 0.7s ease;
  box-shadow: 0 6px 20px rgba(11, 85, 99, 0.4);
}

/* Email — bounce up */
@keyframes emailBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }

  60% {
    transform: translateY(-3px);
  }
}

.contact-detail:hover .contact-detail-icon--email {
  animation: emailBounce 0.6s ease;
  box-shadow: 0 6px 20px rgba(11, 85, 99, 0.4);
}

/* Location — pin drop pulse */
@keyframes locationPulse {
  0% {
    transform: scale(1) translateY(0);
  }

  25% {
    transform: scale(1.15) translateY(-4px);
  }

  50% {
    transform: scale(1) translateY(0);
  }

  75% {
    transform: scale(1.08) translateY(-2px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

.contact-detail:hover .contact-detail-icon--location {
  animation: locationPulse 0.7s ease;
  box-shadow: 0 6px 20px rgba(11, 85, 99, 0.4);
}

/* Hours — spin */
@keyframes clockSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact-detail:hover .contact-detail-icon--hours {
  animation: clockSpin 0.6s ease;
  box-shadow: 0 6px 20px rgba(11, 85, 99, 0.4);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #0B5563;
  box-shadow: 0 0 0 3px rgba(11, 85, 99, 0.1);
}

.form-textarea {
  resize: none;
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-buttons {
    flex-direction: row;
  }
}