/* Clean & Simple Design - Business Focused */
:root {
  /* Simple Color Palette */
  --primary: #197A56;
  --accent: #21BF61;
  --dark: #0E3E1B;
  
  /* Clean Neutrals */
  --white: #ffffff;
  --light: #f8f9fa;
  --gray: #6c757d;
  --text: #343a40;
  --border: #dee2e6;
  --shadow: rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Clean & Simple */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav a:hover {
  background: var(--light);
  color: var(--primary);
}

/* Hero Section - Business Focused */
.hero {
  background: linear-gradient(rgba(14, 62, 27, 0.7), rgba(14, 62, 27, 0.7)), url('./images/range.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 6rem 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(33, 191, 97, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 191, 97, 0.4);
}

.status-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: var(--light);
}

.gallery-caption {
  padding: 1rem;
  background: var(--white);
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}

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

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.price-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow);
}

.price-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.price-main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.price-sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.price-details {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Discounts */
.discounts {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  text-align: center;
}

.discounts h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.discount-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.discount-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: var(--light);
  border-radius: 12px;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Contact Info */
.contact-info {
  background: var(--primary);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.phone-link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}

.phone-link:hover {
  color: var(--accent);
}

/* Map Overlay */
.map-container a:hover .map-overlay,
.map-container a:focus .map-overlay {
  opacity: 1;
}

@media (hover: none) {
  .map-overlay {
    opacity: 1;
  }
}

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

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .contact-details {
    flex-direction: column;
    gap: 1rem;
  }
  
  .discount-list {
    flex-direction: column;
    gap: 1rem;
  }
}
