
*{box-sizing:border-box}html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:#0f172a}
:root{
--blue:#1565c0;
--green:#2e7d32;
--brown:#8d6e63;
--ink:#1b1b1b;
--muted:#64748b;
--bg:#fdfcf9;
--card:#ffffff;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1240px;margin:0 auto;padding:0 20px}
.topbar{background:#0f172a;color:#fff;font-size:14px}
.topbar .inner{display:flex;align-items:center;justify-content:space-between;height:40px}
.topbar a{color:#cbd5e1;margin-left:14px}
.header{position:sticky;top:0;z-index:1000;background:#fff;border-bottom:1px solid #e2e8f0}
.nav{display:flex;align-items:center;justify-content:space-between;height:70px}
.brand{font-weight:800;font-size:20px}
.cta{background:var(--blue);color:#fff;padding:10px 16px;border-radius:8px;font-weight:700}
/* Hamburger */
.hamburger{width:36px;height:28px;display:flex;flex-direction:column;justify-content:space-between;cursor:pointer;margin-left:16px}
.hamburger span{height:4px;background:#0f172a;border-radius:4px;display:block}
.nav-links{display:flex;gap:18px;align-items:center}
@media (max-width:980px){.nav-links{display:none}.nav-panel{display:block}}
.nav-panel{display:none;position:fixed;top:110px;left:0;right:0;background:#fff;border-top:1px solid #e2e8f0;box-shadow:0 8px 30px rgba(0,0,0,.06);padding:12px}
.nav-panel.open{display:block}
.nav-panel a{display:block;padding:12px 20px;border-radius:8px}
.nav-panel a:hover{background:#f1f5f9}
/* Hero */
.hero{position:relative;background:#000;height:60vh;min-height:420px;display:flex;align-items:center;overflow:hidden}
.hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.55)}
.hero .content{position:relative;color:#fff;padding:0 20px}
.hero h1{font-size:48px;margin:0 0 8px}
.hero p{font-size:18px;color:#e2e8f0;margin:0 0 16px}
.btn{display:inline-block;background:var(--green);color:#fff;padding:12px 18px;border-radius:10px;font-weight:700}
/* Sections */
.section{padding:60px 0;background:var(--bg)}
.section.alt{background:#fff}
.section-title{font-size:30px;margin:0 0 12px;font-weight:900;text-align:center}
.section-sub{color:var(--muted);text-align:center;margin:0 0 28px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:var(--card);border:1px solid #e2e8f0;border-radius:14px;padding:18px;box-shadow:0 10px 24px rgba(0,0,0,.04)}
.card h3{margin:0 0 6px}
@media (max-width:980px){.cards{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.cards{grid-template-columns:1fr}}
/* Featured slider */
.slider{position:relative;overflow:hidden;border-radius:14px;background:#fff;border:1px solid #e2e8f0}
.slider-track{display:flex;transition:transform .35s ease}
.slide{min-width:100%;height:380px;position:relative}
.slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.slider .arrow{position:absolute;top:50%;transform:translateY(-50%);background:#fff;border:1px solid #e2e8f0;padding:10px 14px;border-radius:10px;cursor:pointer;font-weight:700}
.slider .arrow.left{left:10px}
.slider .arrow.right{right:10px}
/* Why Us */
.columns{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.columns .col{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:18px}
@media (max-width:980px){.columns{grid-template-columns:1fr}}
/* Testimonials (placeholder style) */
.testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.testimonial{background:#fff;border:1px solid #e2e8f0;border-radius:14px;padding:18px;font-style:italic;color:#334155}
@media (max-width:980px){.testimonials{grid-template-columns:1fr}}
/* Gallery */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gallery-grid img{width:100%;height:280px;object-fit:cover;border-radius:12px;cursor:pointer;box-shadow:0 8px 20px rgba(0,0,0,.06)}
@media (max-width:980px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.gallery-grid{grid-template-columns:1fr}}
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;align-items:center;justify-content:center;z-index:2000}
.lightbox img{max-width:92%;max-height:86%;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.5)}
.lightbox.show{display:flex}
.lightbox .close{position:absolute;top:20px;right:20px;font-size:28px;color:#fff;cursor:pointer}
/* Footer */
.footer{background:#0f172a;color:#cbd5e1;padding:36px 0;margin-top:40px}
.footer .grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:20px}
.footer a{color:#e2e8f0}
@media (max-width:980px){.footer .grid{grid-template-columns:1fr}}

/* === C+A Landscaping Blue + Green Theme Refresh === */

/* Section backgrounds alternating */
.section:nth-of-type(odd) {
  background: #f0fdf4; /* light green */
}
.section:nth-of-type(even) {
  background: #eff6ff; /* light blue */
}

/* Hero header gradient */
.hero {
  background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.hero h1, .hero p {
  color: white;
}

/* Headers */
h1, h2, h3, h4 {
  color: #166534; /* deep green */
}
.section-title {
  border-bottom: 3px solid #3b82f6; /* blue accent underline */
  display: inline-block;
  padding-bottom: 5px;
}

/* Buttons */
.btn, .cta, .dropbtn {
  background-color: #22c55e; /* green */
  color: #fff !important;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover, .cta:hover, .dropbtn:hover {
  background-color: #1d4ed8; /* blue hover */
}

/* Dropdown styling */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: #166534;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #eff6ff; /* light blue highlight */
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Owners section highlight */
#owners {
  background-color: #f0fdf4; /* light green block */
  padding: 40px 20px;
  text-align: center;
}

/* Footer */
footer {
  background-color: #14532d; /* dark green */
  color: white;
  padding: 20px;
}
footer a {
  color: #93c5fd; /* light blue links */
}
footer a:hover {
  color: #22c55e; /* green hover */
}

.owners-preview img { width:120px; height:120px; border-radius:50%; object-fit:cover; border:3px solid #22c55e; }
#service-area { background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%); color:#fff; padding:40px 20px; }
#service-area h2 { color:#fff; }

.has-submenu{position:relative}.has-submenu>.submenu{display:none;position:absolute;background:#fff;border:1px solid #ddd;padding:8px 12px;list-style:none;z-index:9999}.has-submenu:hover>.submenu{display:block}.has-submenu>.submenu li{margin:4px 0}.has-submenu>.submenu a{text-decoration:none;color:#0b3d2e}
