/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --text: #1C1C1C;
  --ink: #111815;
  --green: #2E5E4E;
  --green-dark: #23483D;
  --red: #B11E2D;
  --gold: #D3A23A;
  --orange: #FF8C42;
  --border: #E3DED4;
  --shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--ink);
  color: var(--bg);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo img {
  max-height: 100px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.phone {
  font-weight: 600;
  color: var(--bg);
  font-size: 1rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.bar {
  width: 28px;
  height: 3px;
  background-color: var(--orange);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

.nav-links li a {
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover::after {
  width: 80%;
}

.nav-links li a:hover {
  color: var(--orange);
}

/* Hamburger Animation */
.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(46, 94, 78, 0.95) 0%, rgba(17, 24, 21, 0.9) 100%), 
              url('../assets/hero-image.jpg') no-repeat center/cover;
  padding: 6rem 2rem;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-wrapper {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  color: var(--bg);
}

.hero-text .tagline {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-text h1 {
  color: var(--bg);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero-text .service-area {
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.call-btn, .gbp-btn {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: var(--bg);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
  font-size: 1.1rem;
}

.call-btn:hover, .gbp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Page Hero Styles */
.page-hero-simple, .page-hero-blog {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--ink) 100%);
  padding: 5rem 2rem 3rem;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
  color: var(--bg);
}

.breadcrumbs {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.page-hero-content h1 {
  color: var(--bg);
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* About Section */
#about {
  padding: 5rem 2rem;
  background-color: var(--surface);
}

.content-wrapper {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  align-items: center;
}

.text-block {
  flex: 1;
}

.text-block h2 {
  color: var(--green);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.text-block p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.image-block {
  flex: 1;
}

.image-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow);
}

/* Section Styles for About Page */
.section-alt {
  padding: 5rem 2rem;
  background-color: var(--bg);
}

.container-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px var(--shadow);
}

.info-card h3 {
  color: var(--green);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.info-card p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section-values {
  padding: 5rem 2rem;
  background-color: var(--surface);
}

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

.section-title-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center h2 {
  color: var(--green);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title-center p {
  font-size: 1.2rem;
  color: var(--text);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: var(--bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px var(--shadow);
}

.value-card h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text);
  font-size: 1.05rem;
}

/* Blog Styles */
#blog {
  padding: 3rem 2rem;
  background-color: var(--bg);
}

.blog-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px var(--shadow);
}

.blog-post h2 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.post-date {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.blog-post p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-post a {
  color: var(--green);
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-post a:hover {
  color: var(--orange);
}

.blog-list {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-list li {
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

/* Services Page Styles */
.services-section {
  padding: 5rem 2rem;
  background-color: var(--bg);
}

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

.services-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px var(--shadow);
}

.service-card h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.service-card small {
  color: var(--text);
  opacity: 0.7;
}

.services-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.detail-card {
  background-color: var(--surface);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

.detail-card h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.detail-card p {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.badge-container {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.service-badge {
  background-color: var(--orange);
  color: var(--surface);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-checklist {
  list-style: none;
  padding: 0;
}

.service-checklist li {
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  padding-left: 0.5rem;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.btn-large {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: var(--bg);
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
  font-size: 1.2rem;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Contact Page Styles */
.contact-section {
  padding: 5rem 2rem;
  background-color: var(--bg);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info-card {
  background-color: var(--surface);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
}

.contact-info-card h3 {
  color: var(--green);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.contact-detail {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-detail strong {
  color: var(--ink);
}

.contact-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--orange);
}

.contact-note {
  background-color: var(--bg);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 1.5rem;
}

.contact-divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 2rem 0;
}

.contact-checklist {
  list-style: none;
  padding: 0;
}

.contact-checklist li {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  padding-left: 0.5rem;
}

/* FAQ Section */
#faq {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--bg);
}

#faq h2 {
  color: var(--green);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
}

.faq-container {
  display: grid;
  gap: 2rem;
}

.faq-item {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px var(--shadow);
}

.faq-item h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.faq-item p {
  color: var(--text);
  font-size: 1.05rem;
}

/* Services Section */
#services {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--ink) 100%);
  text-align: center;
}

#services h2 {
  color: var(--bg);
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-item {
  padding: 2.5rem;
  background-color: var(--surface);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.2);
}

.service-item h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-item p {
  color: var(--text);
  font-size: 1.05rem;
}

/* Contact Section */
#contact {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--surface);
}

#contact h2 {
  color: var(--green);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

#contact h3 {
  margin: 2rem 0;
}

#contact p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

#contact a {
  color: var(--green);
  font-weight: 600;
  transition: color 0.3s ease;
}

#contact a:hover {
  color: var(--orange);
}

.map-container {
  max-width: 100%;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--green-dark) 100%);
  color: var(--bg);
}

.footer-logo {
  max-height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-content p {
  margin: 0.5rem 0;
}

footer p {
  margin: 0.5rem 0;
}

footer a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--gold);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
  color: var(--bg);
  padding: 1.2rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 25px rgba(255, 140, 66, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.floating-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-right {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--ink);
    padding: 1rem 0;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 1rem;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: 500px;
  }

  .hero-wrapper {
    flex-direction: column;
  }

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

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .logo img {
    max-height: 80px;
  }

  #faq h2, #services h2, #contact h2, .text-block h2, .section-title-center h2, .page-hero-content h1 {
    font-size: 2rem;
  }

  .service-grid, .services-grid-main, .services-details, .container-split, .values-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .blog-post, .info-card, .contact-info-card, .service-card, .detail-card {
    padding: 2rem;
  }
}
