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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Hero wrapper with background image and green overlay */
.hero-wrapper {
  position: relative;
  background-image: url('images/CameraMan.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 75, 46, 0.88), rgba(36, 87, 31, 0.85));
  z-index: 1;
}

/* Navbar Styles */
.navbar-custom {
  background: rgba(43, 75, 46, 0.95) !important;
  padding: 1.2rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.navbar-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-logo {
  max-height: 50px;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-custom .navbar-nav {
  gap: 0.5rem;
}

.navbar-custom .navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  position: relative;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.navbar-custom .navbar-nav .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.navbar-custom .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #a8d08d;
  border-radius: 2px;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-scrolled {
  background: rgba(43, 75, 46, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-scrolled .navbar-logo {
  max-height: 45px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  font-size: 1rem;
}

.hero-feature i {
  font-size: 1.5rem;
  color: #a8d08d;
}

.btn-hero {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #5c9f5f, #4a8a4d);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #6bb06e, #5c9f5f);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b4b2e;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #5c9f5f, #4a8a4d);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-description {
  font-size: 1.15rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: #f8f9fa;
}

.about-content {
  padding-right: 2rem;
}

.about-content .lead {
  font-size: 1.2rem;
  color: #2b4b2e;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-content p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.8rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5c9f5f, #4a8a4d);
  border-radius: 12px;
  color: white;
  font-size: 1.6rem;
}

.value-card h3 {
  font-size: 1.2rem;
  color: #2b4b2e;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  background: white;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(92, 159, 95, 0.3);
}

.service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5c9f5f, #4a8a4d);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2b4b2e;
  margin-bottom: 1.2rem;
  padding-right: 60px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.service-features li {
  font-size: 0.95rem;
  color: #555;
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.6;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #5c9f5f;
  font-size: 0.85rem;
}

.service-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-style: italic;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #2b4b2e, #24571f);
  color: white;
  padding: 5rem 0;
}

.contact-section .section-header h2 {
  color: white;
}

.contact-section .section-underline {
  background: linear-gradient(90deg, #a8d08d, #8bc68c);
}

.contact-section .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #a8d08d;
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.contact-card a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-card a:hover {
  color: #a8d08d;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  margin: 0;
}

/* Footer */
.footer {
  background: #1a2f1c;
  color: rgba(255, 255, 255, 0.9);
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  max-height: 60px;
  filter: brightness(1.1);
}

.footer p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 6rem 0 4rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .navbar-custom .navbar-nav {
    gap: 0;
    margin-top: 1rem;
  }

  .navbar-custom .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-features li {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.9rem;
  }

  .btn-hero {
    width: 100%;
    padding: 0.8rem 2rem;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}