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

body {
  font-family: 'Lato', Arial, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  background: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

header {
  background: #fff;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
}

header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.logo img {
  height: 65px;
  width: auto;
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

nav ul {
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 0;
  transition: color 0.3s;
  position: relative;
}

nav ul li a:hover,
nav ul li a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

nav ul li a::after {
  display: none;
}

.header-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-icons a {
  color: #333;
  font-size: 18px;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s;
  display: block;
}

.hero {
  position: relative;
  background: #000;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-img-container {
  position: relative;
  width: 70%;
  max-width: 950px;
}

.hero-img-container img {
  width: 100%;
  display: block;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: absolute;
  bottom: 40px;
  left: 30px;
  z-index: 2;
  color: #000;
  max-width: 550px;
}

.hero-content p.tagline {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #000;
  background: #fff;
  display: inline-block;
  padding: 4px 10px;
  font-weight: 700;
}

.hero-content h1 {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-content h1 .line {
  display: inline;
  background: #fff;
  padding: 2px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-content h1 span.subtitle {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #000;
  margin-top: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #85a22e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #6e8826;
}

section {
  padding: 80px 0;
  background: #fff;
}

section.alt-bg {
  background: #f5f5f0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #fff;
  background: #1a1a1a;
  display: inline-block;
  padding: 6px 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

.owner-section {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.owner-image {
  flex: 0 0 300px;
  max-width: 300px;
}

.owner-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.owner-text {
  flex: 1;
  min-width: 300px;
}

.owner-text h2 {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #fff;
  background: #1a1a1a;
  display: inline-block;
  padding: 6px 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.owner-text h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
}

.owner-divider {
  width: 60px;
  height: 1px;
  background: #ccc;
  margin: 0 auto 20px;
}

.owner-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.about-main {
  flex: 1;
  min-width: 300px;
}

.about-main p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-main ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-main ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  font-size: 17px;
}

.about-main ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #333;
  font-size: 18px;
}

.about-sidebar {
  flex: 0 0 380px;
  max-width: 380px;
}

.info-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #4CAF50;
}

.info-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #2E7D32;
  margin-bottom: 12px;
}

.info-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.gallery-slideshow {
  max-width: 700px;
  margin: 0 auto;
}

.gallery-main-img {
  width: 100%;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
}

.gallery-main-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
}

.gallery-thumb {
  width: 60px;
  height: 45px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.gallery-thumb.active {
  border-color: #85a22e;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subscribe-section {
  background: #fff;
  padding: 60px 40px;
  border-top: 1px solid #e0e0e0;
}

.subscribe-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.subscribe-section h3 {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  white-space: nowrap;
}

.subscribe-form {
  display: flex;
  flex: 1;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  font-size: 15px;
  outline: none;
}

.subscribe-form input:focus {
  border-color: #85a22e;
}

.subscribe-form button {
  padding: 14px 28px;
  background: #85a22e;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #6e8826;
}

.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.col-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 400;
  font-style: italic;
}

.col-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

footer {
  background: #fff;
  color: #666;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #e0e0e0;
}

footer .footer-brand {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

footer .footer-bottom p {
  font-size: 13px;
  color: #888;
}

footer p {
  margin-bottom: 5px;
}

.page-header {
  background: #2E7D32;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.page-header h1 {
  font-family: 'Lato', sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.services-menu-v2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-menu-v2 ul {
  display: inline-block;
  text-align: left;
}

.services-menu-v2 h4 {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
}

.services-menu-v2 h4.not-italic {
  font-style: normal;
}

.services-menu-v2 ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
  font-size: 16px;
}

.services-menu-v2 ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #333;
  font-size: 16px;
}

.services-details {
  margin-top: 40px;
}

.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.services-row.single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-detail {
  text-align: center;
}

.service-detail h4 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  padding-bottom: 10px;
}

.service-detail h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #85a22e;
  margin: 8px auto 0;
}

.service-detail p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.faq-col {
  text-align: center;
}

.faq-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 400;
  font-style: italic;
}

.faq-col p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.book-consultation-banner {
  background: #85a22e;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.book-consultation-banner .section-title h2 {
  background: #333;
}

.book-consultation-banner p {
  font-size: 18px;
  margin-top: 15px;
}

.section-title-outline h2 {
  background: transparent;
  color: #333;
  border: 2px solid #85a22e;
}

.subscribe-section-bg {
  background-image: url('https://img1.wsimg.com/isteam/stock/14373');
  background-size: cover;
  background-position: center;
  position: relative;
}

.subscribe-section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.85);
}

.subscribe-section-bg .subscribe-inner {
  position: relative;
  z-index: 1;
}

.gift-cards-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.gift-cards-image img {
  width: 100%;
  border-radius: 4px;
}

.gift-cards-text h3 {
  font-family: 'Lato', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.gift-cards-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-italic {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #333;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-info h4 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-info p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-details {
  margin-top: 20px;
}

.contact-details h4 {
  margin-top: 20px;
}

.contact-details .address {
  font-style: normal;
  color: #555;
  line-height: 1.8;
}

.contact-details .phone-numbers {
  margin-bottom: 15px;
}

.contact-details .phone-numbers a {
  color: #333;
  text-decoration: underline;
  transition: color 0.3s;
}

.contact-details .phone-numbers a:hover {
  color: #8B8B3C;
}

.hours-list p {
  color: #555;
  margin-bottom: 3px;
  font-size: 16px;
}

.contact-map {
  position: sticky;
  top: 80px;
}

.contact-map iframe {
  width: 100%;
  height: 500px;
  border: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    transform: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero-img-container {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p.tagline {
    font-size: 10px;
  }

  .owner-section {
    flex-direction: column;
    text-align: center;
  }

  .owner-image {
    flex: none;
    max-width: 250px;
    margin: 0 auto;
  }

  .about-content {
    flex-direction: column;
  }

  .about-sidebar {
    flex: none;
    max-width: 100%;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .services-menu ul {
    columns: 1;
  }

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

  .subscribe-form {
    flex-direction: column;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .header-icons {
    display: none;
  }
}
