/* Fonts */
@font-face {
  font-family: 'Air America';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../air-america-regular.woff2') format('woff2');
}

/* Base */
:root {
  --color-brand: #07ad1f;
  --color-brand-dark: #058a18;
  --color-text: #333;
  --color-text-light: #555;
  --color-bg: #fff;
  --color-bg-alt: #f7f7f7;
  --color-border: #e0e0e0;
  --font-body: 'Muli', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Quicksand', var(--font-body);
  --font-logo: 'Air America', var(--font-heading);
  --radius: 8px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

.section-rule {
  border: 0;
  height: 3px;
  width: 60px;
  background: var(--color-brand);
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-brand-dark);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-brand);
}

.btn-secondary:hover {
  background: var(--color-brand);
  color: #fff;
  text-decoration: none;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-title {
  font-family: var(--font-logo);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
}

.header-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  text-align: right;
}

.tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* Hero */
.hero {
  background: var(--color-bg-alt);
  padding: 2rem 0;
}

.hero-image {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: var(--color-bg-alt);
}

.section-about p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  text-align: center;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  color: var(--color-brand);
  margin-bottom: 0.75rem;
}

.pricing-card p {
  flex-grow: 1;
  color: var(--color-text-light);
}

.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.pricing-card-featured {
  border-color: var(--color-brand);
  box-shadow: 0 4px 16px rgba(7, 173, 31, 0.12);
}

/* Welcome */
.section-welcome {
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.feature-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-brand);
  font-weight: 700;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Reviews */
.section-reviews {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../125326_02a770fe58') center/cover no-repeat;
  color: #fff;
}

.section-reviews h2,
.section-reviews .section-rule {
  color: #fff;
}

.section-reviews .section-rule {
  background: #fff;
}

.reviews-placeholder {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.reviews-placeholder a {
  color: #fff;
  text-decoration: underline;
}

/* Social */
.section-social {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

/* Contact */
.contact-info {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h3 {
  color: var(--color-brand);
}

.contact-info address {
  font-style: normal;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.contact-info .hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.form-intro {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(7, 173, 31, 0.1);
}

.honeypot {
  display: none !important;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  display: none;
}

.form-status.success {
  display: block;
  background: #e6f7e8;
  color: #056b12;
}

.form-status.error {
  display: block;
  background: #fce8e8;
  color: #8a1c1c;
}

/* Footer */
.site-footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 1.5rem 0;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer p + p {
  margin-top: 0.35rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-info {
    text-align: center;
    justify-content: center;
  }

  h2 {
    font-size: 1.6rem;
  }

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

  .contact-info {
    text-align: center;
  }
}
