/* --- Master Color & Typography --- */
:root {
  --main: #1b3a2f;       /* Hunter Green */
  --accent: #f37021;     /* Safety Orange */
  --secondary: #2c5d44;  /* Pine Green */
  --light-bg: #f4f7f5;   
  --card-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --heading-font: 'Georgia', serif;
  --body-font: 'Inter', sans-serif;
}

* { 
  box-sizing: border-box; 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  font-family: var(--body-font);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.7;
}

/* --- Header & Square Logo --- */
header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-bottom: 4px solid var(--main);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-main {
  height: 85px; /* Pronounced Square Logo */
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.logo-main:hover {
  transform: scale(1.05);
}

.brand-text h1 {
  font-size: 1.7rem;
  margin: 0;
  color: var(--main);
  font-family: var(--heading-font);
  line-height: 1.1;
}

.tagline-desktop {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  font-weight: 700;
  margin-top: 4px;
}

.header-contact {
  text-align: right;
}

.header-contact .phone {
  color: var(--main);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.header-contact .phone:hover {
  color: var(--accent);
}

.tagline-mobile { display: none; }

/* --- Hero Section (Starry Night) --- */
.hero {
  background: linear-gradient(rgba(20, 42, 31, 0.5), rgba(20, 42, 31, 0.85)), 
              url('images/20250927_062919.jpg'); 
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 18px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero h2 {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: white;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

/* --- Layout Sections --- */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 5rem 1.5rem;
}

h2 {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--main);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* --- Service Cards --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
  border-bottom: 4px solid var(--accent);
}

.card span {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* --- Checkmarks List --- */
.checks {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 2.5rem auto 0;
  max-width: 800px;
  justify-content: center;
}

.checks li {
  background: var(--light-bg);
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.checks li::before {
  content: "✔";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.gallery-item {
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* --- Contact Form --- */
form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group { margin-bottom: 1.2rem; }

input, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: #fdfdfd;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.1);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: #d9611a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}

/* --- Footer --- */
footer {
  background: var(--main);
  color: white;
  text-align: center;
  padding: 1rem 0;
}

.contact-footer { text-align: center; margin-top: 2rem; font-size: 1.1rem; }

/* --- Mobile / Responsiveness --- */
.mobile-break { display: none; }
.mobile-call-btn { display: none; }

@media (max-width: 768px) {
  header { padding: 1rem 0; }
  .header-flex { flex-direction: column; gap: 15px; }
  .logo-main { height: 75px; }
  .brand-text h1 { font-size: 1.5rem; text-align: center; }
  .tagline-desktop { display: none; }
  .tagline-mobile { display: block; font-size: 0.8rem; color: #666; font-weight: bold; }
  .header-contact { text-align: center; }
  
  .hero h2 { font-size: 2.5rem; }
  
  .mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 9999;
  }
}

@media (max-width: 480px) {
  .mobile-break { display: block; }
  .hero { padding: 80px 15px; }
  .hero h2 { font-size: 2.2rem; }
  
  .grid { grid-template-columns: 1fr; gap: 1rem; }
  .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1.2rem;
  }
  .card span { margin-bottom: 0; margin-right: 15px; font-size: 1.6rem; min-width: 35px; }
  
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  form { padding: 1.5rem; }
  
.checks { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin-top: 2rem; }
.checks li { background: var(--light-bg); padding: 10px 15px; border-radius: 5px; font-weight: bold; }
}