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

:root {
  --primary-dark: #122930;
  --primary: #1A3B40;
  --accent: #117874;
  --accent-light: #4CA7A1;
  --accent-hover: #0E625F;
  --bg-light: #F8F9FA;
  --text-dark: #2C3E50;
  --text-light: #6C7A89;
  --white: #FFFFFF;
  --testimonial-bg: #EDF3F3;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Logo Container */
.logo-container {
  text-align: center;
  padding: 1.5rem 0;
  background-color: var(--white);
}

.logo-container img {
  max-width: 250px;
  height: auto;
}

.bottom-logo {
  border-top: 1px solid #eee;
  padding-bottom: 2.5rem;
}

/* Header / Hero Section */
.hero {
  background-color: var(--primary-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 10%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stars {
  color: #F5A623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.reviews-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-logos {
  margin-top: 1.5rem;
  opacity: 0.8;
}

.hero-logos span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-intro-text {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  border-left: 3px solid var(--accent-light);
  padding-left: 1rem;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  max-width: 50%;
  z-index: 2;
}

.hero-image-wrapper img {
  border-radius: 12px;
  max-width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Listicle Section */
.listicle-container {
  padding: 5rem 10%;
  background-color: var(--bg-light);
}

.list-item {
  display: flex;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.list-item:nth-child(even) {
  flex-direction: row-reverse;
}

.item-image {
  flex: 1;
  min-height: 400px;
  position: relative;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.item-content {
  flex: 1;
  padding: 4rem;
  position: relative;
}

.item-number {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 8rem;
  font-weight: 700;
  color: var(--accent-light);
  opacity: 0.15;
  line-height: 1;
}

.item-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-right: 40px;
  line-height: 1.2;
}

.item-description {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.item-bullets {
  list-style-type: none;
  margin-bottom: 2.5rem;
}

.item-bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.item-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: bold;
}

.item-testimonial {
  background-color: var(--testimonial-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
}

.item-testimonial p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #CAAB68;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(202, 171, 104, 0.3);
}

.btn-primary:hover {
  background-color: #B59858;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(202, 171, 104, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Form Section */
.form-section {
  padding: 5rem 10%;
  background-color: var(--white);
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.form-container h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.form-container p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  display: inline;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 0;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Footer Section */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 5%;
  }

  .hero-content {
    margin-bottom: 3rem;
  }
  
  .hero-intro-text {
    border-left: none;
    border-top: 3px solid var(--accent-light);
    padding-left: 0;
    padding-top: 1rem;
    margin-top: 1.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 80%;
  }

  .list-item, .list-item:nth-child(even) {
    flex-direction: column;
  }

  .item-image {
    min-height: 300px;
  }
  
  .item-image img {
    position: relative;
    height: 300px;
  }

  .item-content {
    padding: 2.5rem;
  }

  .item-number {
    right: 20px;
    top: 10px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .form-container {
    padding: 2rem 1.5rem;
  }
}
