/*
Theme Name: LI Snow Pros
Theme URI: https://longislandsnowpros.com
Author: Logic Web Media
Description: Custom theme for Long Island Snow Pros
Version: 1.0.0
*/

:root {
  --orange: #eba318;
  --orange-dark: #d37f00;
  --dark: #0f172a;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text: #222222;
  --text-mid: #454f5e;
  --border: #e5e7eb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; font-size: 16px; color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   HEADER
=========================== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.site-logo img { height: 60px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--orange); }
.site-nav .nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  margin-left: 12px;
  font-size: 15px;
}
.site-nav .nav-cta:hover { background: var(--orange-dark); color: #fff !important; }

/* Hamburger */
.hamburger {
  display: none;
  background: var(--orange);
  border: none;
  border-radius: 6px;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 2px solid var(--orange);
}
.mobile-nav a { color: var(--dark); font-size: 15px; font-weight: 700; padding: 13px 24px; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .nav-cta { background: var(--orange); color: #fff !important; text-align: center; border-radius: 0; border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/Long-Island-Snow-Pros.jpg');
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,15,25,0.55);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 80px 0 120px;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: capitalize;
  letter-spacing: 1px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 4px;
  transition: background 0.2s;
}
.hero-cta:hover { background: var(--orange-dark); color: #fff; }

/* Torn/wave bottom on hero */
.hero-wave { display: none; }

/* ===========================
   CLIENT LOGO CAROUSEL
=========================== */
.logo-carousel {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid #eee;
}
.logo-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.logo-track img {
  height: 80px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
.logo-track img:hover { opacity: 1; filter: grayscale(0%); }

/* ===========================
   FEATURED SERVICES (3 photo cards)
=========================== */
.featured-services {
  background: var(--gray);
  padding: 60px 0;
}
.featured-services-title {
  text-align: center;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 30px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service-card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card-img:hover img { transform: scale(1.05); }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.3s;
}
.service-card-img:hover::after { background: rgba(0,0,0,0.35); }
.service-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

/* ===========================
   WHY US (white bg, orange icons)
=========================== */
.why-us {
  padding: 60px 0;
  background: #fff;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--border);
}
.why-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-item-icon { width: 52px; height: 52px; margin: 0 auto 16px; }
.why-item-icon img { width: 52px; height: 52px; object-fit: contain; }
.why-item h3 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.why-item p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* ===========================
   WHO WE ARE
=========================== */
.who-we-are {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.who-inner { max-width: 700px; }
.who-inner h2 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 20px;
}
.who-inner p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.who-img-mobile { display: none; }
@media (max-width: 768px) {
  .who-img-mobile { display: block; margin-top: 24px; }
  .who-img-mobile img { width: 100%; border-radius: 4px; }
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--gray); padding: 70px 0; }
.testimonials-title {
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 26px;
  border: 1px solid var(--border);
}
.testimonial-stars { color: var(--orange); font-size: 16px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 16px; border: none; padding: 0; }
.testimonial-author { font-size: 14px; font-weight: 700; color: var(--dark); }

/* ===========================
   CONTACT
=========================== */
.contact-section { padding: 70px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.contact-info > p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 26px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; }
.contact-detail i { color: var(--orange); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-detail a { color: var(--text); font-weight: 600; }
.contact-detail a:hover { color: var(--orange); }

.contact-form { background: var(--gray); border-radius: 8px; padding: 32px 28px; }
.contact-form h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 4px; font-size: 14px; color: var(--text); background: #fff; font-family: inherit; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--orange); color: #fff; font-size: 15px; font-weight: 700; padding: 13px; border: none; border-radius: 4px; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.form-submit:hover { background: var(--orange-dark); }
.form-success { display: none; background: #e6f9ee; border: 1px solid #a3d9b1; color: #1a6b34; border-radius: 4px; padding: 13px; font-size: 14px; font-weight: 600; margin-top: 12px; }

/* ===========================
   FOOTER
=========================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo img { height: 50px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a, .footer-col ul li span { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 32px; height: 32px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 13px; transition: background 0.2s, color 0.2s; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-bottom { padding: 16px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/header-banner.jpeg');
  background-size: cover; background-position: center;
  opacity: 0.4;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; width: 100%; padding: 60px 0; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; text-transform: capitalize; letter-spacing: 1px; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-primary { display: inline-block; background: var(--orange); color: #fff; font-size: 15px; font-weight: 700; padding: 12px 30px; border-radius: 4px; transition: background 0.2s; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }

/* Section utility classes */
.section { padding: 70px 0; }
.section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Services page */
.services-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.services-page-img img { width: 100%; border-radius: 8px; }
.services-subhead { font-size: 18px; font-weight: 700; color: var(--dark); margin: 24px 0 10px; }
.services-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.services-list li { font-size: 15px; color: var(--text-mid); display: flex; align-items: center; gap: 10px; }
.services-list li i { color: var(--orange); }
.services-page-content p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }

/* About page */
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-page-img img { width: 100%; border-radius: 8px; }
.about-page-content p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-box { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 24px 16px; text-align: center; }
.stat-num { font-size: 30px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--text-mid); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* Mobile sticky */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.mobile-sticky-inner { display: flex; }
.mobile-sticky a { flex: 1; text-align: center; padding: 14px 10px; font-size: 13px; font-weight: 700; text-transform: uppercase; font-family: inherit; }
.mobile-sticky .sticky-quote { background: var(--orange); color: #fff; }
.mobile-sticky .sticky-call { background: var(--dark); color: #fff; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-sticky { display: block; }
  body { padding-bottom: 60px; }
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .who-content { padding-right: 0; }
  .who-img { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-page-grid, .about-page-grid { grid-template-columns: 1fr; }
  .services-page-img, .about-page-img { display: none; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .service-cards { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
