/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/*=========================
|Font family 
==========================*/ 
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Font SF Pro Text*/
@font-face {
    font-family: 'NeueHaasDisplay';
    src: url('Asset/fonts/NeueHaasDisplayMediu.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*=============================
* button
*==============================*/

.btn-check:focus+.btn, .btn:focus{
    box-shadow: none;
}

/*=========================
|VARIABLES Font Css
==========================*/
:root{
  --primary:#1A1A1A;
  --green:#64801A;
  --green-light:#A3C210;
  --secondary:#1A1A1A;
  --bg:#F8FAF0;
  --white:#FFFFFF;
  --text-black:#333333;
  --text-gray:#0A0A0A;
  --gray:#CCCCCC;
}

/*=========================
|body css
==========================*/

html{scroll-behavior: smooth;}

body{ 
    color:var(--text-black); 
    font-family: "Inter", sans-serif;
    font-weight: 5000;
    font-style: normal;
    font-size: 18px;
    overflow-x: hidden;
}


/*=========================
| Heading Css
==========================*/

h1{
  font-family: 'NeueHaasDisplay';
  font-weight: 600;
  font-style: Medium;
  font-size: 64px;
  line-height: 72px;
  color: var(--primary);
}
h2{

font-family: 'NeueHaasDisplay';
font-weight: 600;
font-size: 56px;
line-height: 130%;
letter-spacing: 0%;

}
h3{
font-family: 'NeueHaasDisplay';
font-weight: 600;
font-size: 28px;
line-height: 120%;
letter-spacing: 0%;
}


h4,h5,h6{
    font-family: 'NeueHaasDisplay';
    font-weight: normal;
}

p{
    font-size: 1em;
    margin: 0px;
    color: var(--text-gray);
}

ul{margin: 0px;padding: 0px;}

ul li{
    list-style: none;
}

a{ 
    text-decoration: none;
    color:var(--text-gray);
}


/*=========================
|Table css
==========================*/

.pt-10{padding-top: 10px;}
.pt-15{padding-top: 15px;}
.pt-20{padding-top: 20px;}
.pt-25{padding-top: 25px;}
.pt-30{padding-top: 30px;}
.pt-35{padding-top: 35px;}
.pt-40{padding-top: 40px;}
.pt-45{padding-top: 45px;}
.pt-50{padding-top: 50px;}
.pt-60{padding-top: 60px;}
.pt-70{padding-top: 70px;}
.pt-80{padding-top: 80px;}
.pt-90{padding-top: 90px;}
.pt-100{padding-top: 100px;}

/*=========================
|Margin css
==========================*/
.mt-10{margin-top: 10px;}
.mt-20{margin-top: 20px;}
.mt-30{margin-top: 30px;}
.mt-40{margin-top: 40px;}
.mt-50{margin-top: 50px;}
.mt-60{margin-top: 60px;}
.mt-100{margin-top: 100px;}


/*=========================
|section padding
==========================*/
.sp-30{
    padding-top: 30px;
    padding-bottom: 30px;
}
.sp-40{
    padding-top: 40px;
    padding-bottom: 40px;
}
.sp-60{
  padding-top: 60px;
  padding-bottom: 60px;
}
.sp-80{
  padding-top: 80px;
  padding-bottom: 80px;
}
.sp-100{
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-center{
  text-align: center;
}

/*=========================
|animation css
==========================*/

/* CURSOR */
/*.cursor-dot,.cursor-ring{*/
/*  position:fixed;*/
/*  pointer-events:none;*/
/*  transform:translate(-50%,-50%);*/
/*  z-index:9999;*/
/*}*/
/*.cursor-dot{*/
/*  width:6px;height:6px;background:#ff9d00;border-radius:50%;*/
/*}*/
.cursor-ring{
  width:36px;height:36px;border:1px solid #ff9d00;border-radius:50%;
}
.cursor-grow .cursor-ring{ width:60px;height:60px; }

/* REVEAL SYSTEM */
.reveal,.reveal-left,.reveal-right,.reveal-zoom,.reveal-flip,.reveal-blur{
  opacity:0;
  transition:.9s;
}

.reveal{transform:translateY(60px)}
.reveal-left{transform:translateX(-80px)}
.reveal-right{transform:translateX(80px)}
.reveal-zoom{transform:scale(.85)}
.reveal-flip{transform:rotateX(20deg)}
.reveal-blur{filter:blur(10px)}

.visible{
  opacity:1;
  transform:none;
  filter:blur(0);
}

/* DELAY */
.d1{transition-delay:.1s}
.d2{transition-delay:.2s}
.d3{transition-delay:.3s}
.d4{transition-delay:.3s}
.d5{transition-delay:.3s}
.d6{transition-delay:.3s}
.d7{transition-delay:.3s}

/* TEXT REVEAL */
.text-reveal .word span{
  display:inline-block;
  transform:translateY(100%);
  transition:.6s;
}
.text-reveal.visible .word span{
  transform:translateY(0);
}

/*=========================
|Button css
==========================*/

.btn-button {
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  flex-shrink: 0;
  transition:  0.4s ease-in-out;
  justify-content: center;
}

.btn-button .arrow-circle {
  width: 32px;
  height: 32px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-button .arrow-circle svg {
  width: 15px;
  height: 12px;
}
.btn-dark{
  background-color: var(--primary);
  color:var(--white);
}
.btn-dark:hover{
  background-color: var(--green);
}

.btn-green{
  background-color: var(--green-light);
  color:var(--primary);
  border: 1px solid transparent;
}
.btn-green .arrow-circle {
  background-color: var(--primary);
}
.btn-green:hover{
  background-color: var(--secondary);
  color:var(--white);
  border: 1px solid var(--green-light);
}
.btn-green:hover .arrow-circle {
  background-color: var(--white);
}

.btn-green:hover .arrow-circle svg path{
  fill: var(--primary);
}
.btn-transparent{
  background: var(--secondary);
  border: 1px solid var(--green-light);
  color:var(--white);
}
.btn-transparent .green-circle{
  background-color: var(--green-light);
}

.btn-transparent:hover{
  background-color: var(--white);
  color:var(--primary);
}
/* ═══════════════════════════════════════════════
   GLOBAL CONTAINER — max 1280px, centered
═══════════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   GLOBAL SECTION PADDING — 80px top/bottom, 10px left/right
═══════════════════════════════════════════════ */
section {
  padding: 80px 10px;
}


/* ═══════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════ */
.top-bar {
  background: var(--green);
  padding: 10px;
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar p {
  color: var(--white);
  font-weight: 600;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-phone {
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.top-bar-phone svg {
  width: 20px;
  height: 18px;
  fill: var(--white);
  flex-shrink: 0;
}

.btn-free-estimate {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 7px 18px;
  color: #fff;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-free-estimate:hover {
  background: #fff;
  color: #7ab22a;
}


.btn-free-estimate svg {
  width: 18px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-free-estimate:hover svg path{
  fill:#64801a;
}
/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.header-section {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 0 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.mobile-contact-us{
    display:none !important;
    color:var(--white)!important;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.site-logo img{
  max-width: 185px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.menu-close{
  position:absolute;
  top:20px;
  left:20px;
  font-size:24px;
  background:none;
  border:none;
  cursor:pointer;
  display: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-gray);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links a:hover {
  color: var(--green-light);
}

.nav-links .has-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links .has-arrow svg {
  width: 12px;
  height: 12px;
  stroke: #222;
}

/* DROPDOWN */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  border-radius: 10px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
  padding: 100px 10px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #2a4a1a; /* fallback when image is missing */
  z-index: 0;
}
/*
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}*/

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1024px;
  width: 100%;
  margin: 0px auto;
}

.location-badge {
  display: inline-block;
  background: #FFFFFF29;
  border: 1px solid #a3c21045;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(50px)

}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  margin-bottom:0px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn-schedule {
  background: var(--green-light);
  color: #111;
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  padding: 16px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-schedule:hover { opacity: 0.88; }

.btn-schedule .arrow-circle {
  width: 30px;
  height: 30px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-schedule .arrow-circle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #7ab22a;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-call {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 16px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-call:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-call svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
.services-section {
  background: var(--bg);
  color: var(--primary);
}

.services-section .container h2 {
  margin-bottom: 48px;
}

.services-grid-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.services-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Cards ── */
.card {
  border-radius: 8px;
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
}

.card.green { background: var(--green-light); }
.card.dark  { background: var(--primary); }

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  flex-shrink: 0;
}
.card.green .card-icon {
  background: var(--primary);
}

.card.dark .card-icon {
  background: var(--green-light);
}
.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.card.green .card-title { color: var(--primary); }
.card.dark  .card-title { color: var(--white); }

.card-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.card.green .card-text { color: var(--primary); }
.card.dark  .card-text { color: #CCCCCC; }

.text-content{
  border-left:1px solid #A3C210
}
.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 32px;
  border: 2px solid #1a1a1a;
  border-radius: 50px;
  padding: 12px 22px;
  padding-top: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  width: fit-content;
  background: transparent;
  margin-top: 32px;
  transition: background 0.2s, color 0.2s;
}

.btn-learn:hover {
  background: #1a1a1a;
  color: #8BBF2A;
}

.btn-learn .arrow-circle {
  width: 28px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-learn .arrow-circle svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #8BBF2A;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ═══════════════════════════════════════════════
   WHY WAUKEGAN SECTION
═══════════════════════════════════════════════ */
.main-heading {
  margin-bottom: 60px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.image-container {
  position: relative;
  width: 100%;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.labels {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.label {
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.before { background: #ffffff; color: #000; }
.after  { background: #a4c639; color: #000; }

.feature-item {
  margin-bottom: 32px;
  padding-left: 20px;
}
.feature-item:last-child{
  margin-bottom: 0px;
}
.feature-item h3 {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
  position: relative;
  line-height: 1em;
}

.feature-item h3:before{
    content: '';
    width: 5px;
    height: 100%;
    position: absolute;
    left: -22.5px;
    top: 0px;
    background-color: var(--primary);
    border-radius: 10px;
}
.feature-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
}


/* ═══════════════════════════════════════════════
   WAUKEGAN DIFFERENCE SECTION
═══════════════════════════════════════════════ */
.waukegan-diff {
  background-color: var(--primary);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-box {
  background-color: var(--bg);
  border: 1px solid #A3C21033;
  padding: 40px;
  border-radius: 12px;
  color: #1a1a1a;
  position: relative;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.info-box:hover {
  box-shadow: 0 10px 30px rgba(164, 198, 57, 0.2);
}

.badge {
  background-color: var(--green-light);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 25px;
  font-size: 24px;
  flex-shrink: 0;
}

.info-box h3 {
  margin-bottom: 15px;
}

.info-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  flex-grow: 1;
}

.hover-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--primary);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.hover-btn .arrow-circle{
  background-color: var(--primary);
}
.hover-btn span {
  background: #1a1a1a;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 12px;
}

.info-box:hover .hover-btn {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════
   SIGNS SECTION
═══════════════════════════════════════════════ */

.signs-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.signs-header h2 {
  color: var(--primary);
}

.signs-header p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #333333;
}

.signs-flex {
  display: flex;
  align-items:center;
  gap: 60px;

}

.signs-image {
  flex: 1;
  min-width: 0;
}

.signs-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.signs-content {
  flex: 1;
  min-width: 0;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 40px;
}

.check-list i {
  color: #a4c639;
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.check-list p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--primary);
}

.bottom-note {
  margin-top: 50px;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}


/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
 background-size: cover;
 background-attachment: fixed;
 background-repeat: no-repeat;
 background-position: center;
}

.cta-section .container {
  display: flex;
  justify-content: center;
}

.cta-card {
  background: white;
  padding: 60px;
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);

}

.cta-card h2 {
  margin-bottom: 20px;
}

.cta-card p {
  color: #333333;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-link {
  display: block;
  margin-top: 24px;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ═══════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════ */

.faq-title {
  max-width: 600px;
  text-align: center;
  margin: 0px auto;
  margin-bottom: 56px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border-radius: 10px;
  padding: 0;
  border: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
  overflow: hidden;
  border: 1px solid transparent;
}

.faq-item.active {
  border-color: #a4c639;
  background: #fff;
  border: 1px solid #A3C210
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 24px 28px;
  user-select: none;
}

.faq-question h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.icon {
  font-size: 22px;
  font-weight: 400;
  color: #0A0A0A;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.faq-item.active .icon {
  color: #0A0A0A;
}

/* Accordion animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}


/* ═══════════════════════════════════════════════
   ACCREDITED SECTION
═══════════════════════════════════════════════ */
.accredited-section {
  background-color: var(--primary);
  text-align: center;
  color: var(--white);
}

.accredited-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-grid img {
  height: 180px;
  width: auto;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.logo-grid img:hover {
  transform: scale(1.06);
  opacity: 1;
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.main-footer {
  background-color: var(--bg);
  padding: 80px 10px 30px;
  color: #333;
}

.main-footer .container {
  /* inherits max-width: 1280px; margin: 0 auto */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr .45fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 28px;
  display: block;
}

.contact-info p {
  margin-bottom: 18px;
  line-height: 1.6;
  color: #333333;
  font-weight: 500;
  margin-bottom: 0px;
}

.contact-info strong {
  color: #64801A;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.footer-col h4 {
  color: #64801A;
  margin-bottom: 22px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 20px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #5d7a32;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 16px;
  color: #333333;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 30px;
}

.footer-legal a {
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  margin-left: 20px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #333;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════ */

@media (max-width: 1200px) {
  h1{
    font-size: 48px;
    line-height: 58px;
  }
  h2{

  font-size: 42px;

  }
  h3{
  font-size: 24px;
  }

  body{
    font-size: 16px;
  }

}
@media (max-width: 1024px) {

  h1{
    font-size: 42px;
    line-height: 52px;
  }
  h2{

  font-size: 34px;

  }
  h3{
  font-size: 20px;
  }

  /* Services */
  .services-section .container h2,
  .main-heading,
  .signs-header h2,
  .faq-title {
    font-size: 44px;
  }

  .section-header h2 { font-size: 38px; }

  .services-grid-top {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Waukegan */
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Diff section */
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Signs */
  .signs-flex { gap: 40px; }

  /* CTA */
  .cta-card { padding: 48px; }
  .btn-button .arrow-circle{
    width: 25px; 
    height: 25px;
  }
  .btn-button .arrow-circle svg {
    width: 15px;
    height: 10px;
}
}

@media (max-width: 991px) {

.top-bar-inner p, .top-bar-phone, .btn-free-estimate{
  font-size: 12px;
}
  .menu-close{
    display: block;
  }
  .site-logo img {
    max-width: 130px;
}

.mobile-contact-us{
    display:flex !important;
    width:100%;
}
.desktop-contact-us{
    display:none;
}
/* OFFCANVAS */
  .dropdown-menu{
    display:none;
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
  }

  .dropdown.active .dropdown-menu{
    display:flex;
  }

  .nav-links{
    position:fixed;
    right:-100%;
    top:0;
    width:280px;
    height:100vh;
    background:#fff;
    flex-direction:column;
    padding:80px 20px;
    transition:.4s;
    align-items: flex-start;
  }
  .dropdown {
      position: relative;
      width: 100%;
  }
  .nav-links a{
    justify-content: space-between;
  }
  .nav-links.active{ right:0; }
  .hamburger{ display:flex; order: 2}

}
/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  h1{
    font-size: 32px;
    line-height: 52px;
  }
  h2{

  font-size: 28px;

  }
  h3{
  font-size: 18px;
  }
  body{
    font-size: 14px;
  }

 .top-bar-inner p, .top-bar-phone, .btn-free-estimate {
        font-size: 10px;
    }

  /* ── Hero ── */
  .hero {
    min-height: 520px;
    padding: 60px 10px 50px;
  }

  .hero-content h1 { font-size: 36px; }
  .hero-content p  { font-size: 15px; }

  .hover-btn{
    font-size: 12px;
  }

  /* ── Services ── */
  .services-section .container h2 { font-size: 36px; }

  .services-grid-top,
  .services-grid-bottom {
    grid-template-columns: 1fr;
  }

  .card { padding: 28px 24px 32px; }
  .card-icon { margin-bottom: 32px; }

  /* ── Why Waukegan ── */
  .main-heading  { font-size: 36px; }
  .content-grid  { grid-template-columns: 1fr; gap: 32px; }

  /* ── Diff ── */
  .section-header h2 { font-size: 32px; }
  .grid-container    { grid-template-columns: 1fr; }
  .info-box          { padding: 28px; min-height: auto; }
  .hover-btn         { opacity: 1; transform: translateY(0); }

  /* ── Signs ── */
  .signs-header h2   { font-size: 36px; }
  .signs-flex        { flex-direction: column; gap: 32px; }

  /* ── CTA ── */
  .cta-card      { padding: 32px 24px; }
  .cta-card h2   { font-size: 30px; }
  .cta-buttons   { flex-direction: column; align-items: stretch; }
  .btn-phone,
  .btn-quote     { justify-content: center; }

  /* ── FAQ ── */
  .faq-title       { font-size: 32px; margin-bottom: 40px; }
  .faq-question h3 { font-size: 16px; }
  .faq-question    { padding: 20px 20px; }
  .faq-answer      { padding: 0 20px; }
  .faq-item.active .faq-answer { padding-bottom: 20px; }

  /* ── Accredited ── */
  .logo-grid { gap: 36px; }

  /* ── Footer ── */
  .main-footer { padding: 60px 10px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer-legal a { margin: 0 10px; }
}

@media (max-width: 620px) {
    .top-bar-inner{
      justify-content: center;
      gap: 10px;
    }
  }
/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {

  section { padding: 60px 10px; }

  /* Top bar */
  .top-bar-right {gap: 10px; }

.btn-free-estimate svg {
    width: 10px;
    height: 8px;
    fill: currentColor;
    flex-shrink: 0;
}
.btn-free-estimate{
    padding:6px 10px;
}
  /* Hero */
  .hero { padding: 48px 10px 40px; min-height: auto; }
  .hero-content h1 { font-size: 30px; }
  .hero-buttons { flex-direction: column; }
  .btn-schedule,
  .btn-call { justify-content: center; width: 100%; }

  /* Services */
  .services-section .container h2 { font-size: 30px; }

  /* Why Waukegan */
  .main-heading { font-size: 30px; }
  .feature-item h3 { font-size: 18px; }d

  /* Diff */
  .section-header h2 { font-size: 28px; }
  .info-box h3 { font-size: 18px; }

  /* Signs */
  .signs-header h2 { font-size: 30px; }

  /* CTA */
  .cta-card h2 { font-size: 26px; }

  /* FAQ */
  .faq-title { font-size: 28px; }

  /* Accredited */
  .accredited-section h2 { font-size: 28px; }
  .logo-grid { gap: 24px; }
  .logo-grid img { height: 60px; }

  /* Footer */
  .footer-grid { gap: 24px; }

  .site-logo img {
        max-width: 130px;
    }
}
