:root {
  --red: #c41e3a;
  --green: #1a5d1a;
  --gold: #fbbf24;
  --navy: #0f172a;
  --light-navy: #1e293b;
  --card-bg: var(--green);
  --border: rgba(255, 255, 255, .2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------ HOME PAGE ------ */

/* HERO */
.hero {
  padding: clamp(120px, 20vw, 160px) 1rem clamp(60px, 10vw, 100px);
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.hero p {
  color: #f0f0f0;
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  padding: clamp(.7rem, 2.5vw, .75rem) clamp(1.5rem, 4vw, 1.75rem);
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(.95rem, 3vw, 1rem);
  transition: all .3s;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 6px 20px rgba(251, 191, 36, .4);
}

.btn-primary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--gold);
}

/* SERVICES */
.services {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2rem);
  color: #fff;
  margin-bottom: 2.5rem;
  font-weight: 600;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--light-navy);
  padding: 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all .3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  border-color: var(--gold);
}

.service-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: .6rem;
  font-weight: 600;
}

.service-card p {
  color: #e0f7e0;
  font-size: .9rem;
  margin-bottom: .8rem;
}

.price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}


/* CHRISTMAS PROMO */
.christmas-promo {
  background: var(--card-bg);
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1rem, 5vw, 2rem);
  text-align: center;
  margin: clamp(2rem, 6vw, 4rem) auto;
  border-radius: 20px;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  border: 3px solid var(--gold);
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: .5rem 1.5rem;
  border-radius: 50px;
  font-size: clamp(.8rem, 2.5vw, .9rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(251, 191, 36, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.christmas-promo h2 {
  color: #fff;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.christmas-promo p {
  color: #e0f7e0;
  max-width: 700px;
  margin: 0 auto 1.8rem;
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  line-height: 1.6;
}

.btn-primary-large {
  background: var(--gold);
  color: #000;
  padding: clamp(.8rem, 3vw, 1rem) clamp(2rem, 6vw, 2.5rem);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1.1rem, 4vw, 1.2rem);
  box-shadow: 0 8px 25px rgba(251, 191, 36, .4);
  transition: all .3s;
}

.btn-primary-large:hover {
  background: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(251, 191, 36, .5);
}


@keyframes soft-twinkle {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .85
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1
  }
}

/* WHY */
.why {
  padding: 3rem 1rem;
  background: rgba(255, 255, 255, .05);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: auto;
}

.why-item {
  text-align: center;
}

.why-item .icon {
  font-size: clamp(2rem, 6vw, 2.2rem);
  color: var(--gold);
  margin-bottom: .8rem;
}

.why-item h3 {
  color: #fff;
  font-size: clamp(1rem, 4vw, 1.1rem);
  margin-bottom: .4rem;
}

.why-item p {
  color: #ddd;
  font-size: clamp(.85rem, 3vw, .9rem);
}


/* === NEW CENTERING LOGIC FOR LONE ITEM === */

/* Target the layout where three columns are active. 
   Adjust '600px' if your 3-column layout starts elsewhere. */
@media (max-width: 600px) {

  /* Target the last item in the grid */
  .why-grid>.why-item:nth-last-child(1) {
    /* 1. Make the item span 3 columns. This ensures it takes the full width 
           of the row where the three items are laid out.
        */
    grid-column: span 3;

    /* 2. Use 'justify-self: center' to center the item (the .why-item div) 
           within the new, 3-column wide span it occupies.
        */
    justify-self: center;

    /* 3. Optional: Since the item is now centered, you might want to limit 
           its width so it doesn't stretch across the entire screen.
        */
    max-width: 350px;
  }
}

/* FOOTER CTA */
.footer-cta {
  background: rgba(255, 255, 255, .1);
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 5.5vw, 2rem);
  margin-bottom: 1rem;
}

.footer-cta p {
  color: #ddd;
  max-width: 600px;
  margin: 0 auto 1.8rem;
  font-size: clamp(1rem, 3.5vw, 1.1rem);
}

/* SERVICE MAP - SIMPLE PNG */
.service-map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  border: 20px solid rgba(50, 50, 50, 0.3);
  ;
  overflow: hidden;
  margin-bottom: 4rem;
}

.map-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2rem);
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
  transform: scale(1.05);
  transform-origin: top center;
}

footer {
  background: rgba(0, 0, 0, .6);
  color: #bbb;
  text-align: center;
  padding: 1.8rem 1rem;
  font-size: .8rem;
}

@media (max-width:768px) {
  .nav-links {
    gap: 1rem;
    font-size: .9rem
  }

  .phone-btn {
    font-size: .85rem;
    padding: .45rem .8rem
  }

  
  .email-btn {
    font-size: .85rem;
    padding: .42rem .75rem;
    margin-right: .4rem;
  }

  .logo-img {
    height: 32px
  }

  .hero-logo {
    height: 60px
  }

  .services-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:480px) {
  .nav-container {
    padding: 0 .8rem
  }

  .logo {
    font-size: 1.2rem
  }

  .logo-img {
    height: 28px;
    margin-right: 6px
  }

  .nav-links {
    display: none
  }

  .phone-btn {
    font-size: .8rem;
    padding: .4rem .7rem
  }

  .hero {
    padding: 110px 1rem 60px
  }

  .cta-group {
    flex-direction: column;
    align-items: center
  }

  .btn {
    width: 100%;
    max-width: 280px
  }
}

/* ------ HOME PAGE END ------ */







/* SNOW */
.snowflake {
  position: absolute;
  top: -10px;
  color: #ffffff;
  font-size: 1.2em;
  user-select: none;
  pointer-events: none;
  animation: fall linear infinite;
  opacity: .9;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

/* LOGO */
.logo-img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

.hero-logo {
  height: 80px;
  width: auto;
  /* margin-bottom: 1.5rem; */
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .4));
}

/* Holiday logo helper: uses an image from /images/Transparent PNG-05.png as a background.
   This is a block element so it can be used in place of an <img> when you
   prefer a CSS-driven logo (good for simple color/logo swaps). */
.holiday-logo {
  display: inline-block;
  /*width: auto;  adjust as needed */
  aspect-ratio: 5 / 3;
  height: 100px;
  /* adjust as needed */
  background-image: url('/images/Transparent PNG-05.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 180%;
  vertical-align: middle;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

#logo-parent {
  position: relative;
  display: flex;
  justify-content: left;
  align-items: center;
  /* width: 100%; */
  height: 60px;
}

#landing-logo-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  height: 80px;
  margin-top: 4em;
}

/* NAV */
nav {
  /* height: 100px; */
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: .75rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: .95rem;
}

.nav-links a {
  color: #ddd;
  font-weight: 500;
  transition: color .3s;
}

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

.phone-btn {
  background: var(--gold);
  color: #000;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(251, 191, 36, .4);
}

.phone-btn:hover {
  background: #f59e0b;
  transform: translateY(-1px);
}

/* Email button sits next to the phone button in the nav */
.email-btn {
  background: var(--gold);
  color: #000;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(251, 191, 36, .4);
}

.email-btn:hover {
  background: #f59e0b;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  padding: clamp(120px, 20vw, 160px) 1rem clamp(60px, 10vw, 100px);
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}

.hero p {
  color: #f0f0f0;
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  padding: clamp(.7rem, 2.5vw, .75rem) clamp(1.5rem, 4vw, 1.75rem);
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(.95rem, 3vw, 1rem);
  transition: all .3s;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 6px 20px rgba(251, 191, 36, .4);
}

.btn-primary:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--gold);
}

/* SERVICES */
.services {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2rem);
  color: #fff;
  margin-bottom: 2.5rem;
  font-weight: 600;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--light-navy);
  padding: 1.8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all .3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  border-color: var(--gold);
}

.service-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: .6rem;
  font-weight: 600;
}

.service-card p {
  color: #e0f7e0;
  font-size: .9rem;
  margin-bottom: .8rem;
}

.price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* CHRISTMAS PROMO */
.christmas-promo {
  background: var(--card-bg);
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1rem, 5vw, 2rem);
  text-align: center;
  margin: clamp(2rem, 6vw, 4rem) auto;
  border-radius: 20px;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  border: 3px solid var(--gold);
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: .5rem 1.5rem;
  border-radius: 50px;
  font-size: clamp(.8rem, 2.5vw, .9rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 16px rgba(251, 191, 36, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.christmas-promo h2 {
  color: #fff;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.christmas-promo p {
  color: #e0f7e0;
  max-width: 700px;
  margin: 0 auto 1.8rem;
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  line-height: 1.6;
}

.btn-primary-large {
  background: var(--gold);
  color: #000;
  padding: clamp(.8rem, 3vw, 1rem) clamp(2rem, 6vw, 2.5rem);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1.1rem, 4vw, 1.2rem);
  box-shadow: 0 8px 25px rgba(251, 191, 36, .4);
  transition: all .3s;
}

.btn-primary-large:hover {
  background: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(251, 191, 36, .5);
}

/* LIGHT ROWS */
.light-row {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 1;
}

.light-row.top {
  top: clamp(12px, 3vw, 20px);
}

.light-row.bottom {
  bottom: clamp(12px, 3vw, 20px);
}

.light {
  position: absolute;
  width: clamp(6px, 3.5vw, 12px);
  height: clamp(12px, 6vw, 24px); /* Adjust this for more elongation */
  /* Changed border-radius to create the classic light bulb shape: */
  /* Top-left: Very rounded, Top-right: Very rounded */
  /* Bottom-right: Less rounded (or slightly pointed), Bottom-left: Less rounded */
  border-radius: 60% 60% 40% 40% / 70% 70% 30% 30%;
  background: currentColor;
  transform: translate(-50%, -50%);
  /* Kept box-shadow and animation for the glow/twinkle effect */
  box-shadow: 0 0 clamp(8px, 3vw,12px) clamp(3px, 1.5vw, 4px) currentColor, 0 0 clamp(16px, 5vw, 24px) clamp(6px, 2.5vw, 8px) rgba(255, 255, 255, .6);
  animation: soft-twinkle 2.5s ease-in-out infinite;
  opacity: .9;
}

@keyframes soft-twinkle {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .25
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1
  }
}

/* WHY */
.why {
  padding: 3rem 1rem;
  background: rgba(255, 255, 255, .05);
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: auto;
}

.why-item {
  text-align: center;
}

.why-item .icon {
  font-size: clamp(2rem, 6vw, 2.2rem);
  color: var(--gold);
  margin-bottom: .8rem;
}

.why-item h3 {
  color: #fff;
  font-size: clamp(1rem, 4vw, 1.1rem);
  margin-bottom: .4rem;
}

.why-item p {
  color: #ddd;
  font-size: clamp(.85rem, 3vw, .9rem);
}

/* FOOTER CTA */
.footer-cta {
  background: rgba(255, 255, 255, .1);
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 5.5vw, 2rem);
  margin-bottom: 1rem;
}

.footer-cta p {
  color: #ddd;
  max-width: 600px;
  margin: 0 auto 1.8rem;
  font-size: clamp(1rem, 3.5vw, 1.1rem);
}

/* SERVICE MAP - SIMPLE PNG */


.map-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2rem);
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
}

footer {
  background: rgba(0, 0, 0, .6);
  color: #bbb;
  text-align: center;
  padding: 1.8rem 1rem;
  font-size: .8rem;
}

@media (max-width:768px) {
  .nav-links {
    gap: 1rem;
    font-size: .9rem
  }

  .phone-btn {
    font-size: .85rem;
    padding: .45rem .8rem
  }

  .logo-img {
    height: 32px
  }

  .hero-logo {
    height: 60px
  }

  .services-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:480px) {
  .nav-container {
    padding: 0 .8rem
  }

  .logo {
    font-size: 1.2rem
  }

  .logo-img {
    height: 28px;
    margin-right: 6px
  }

  .nav-links {
    display: none
  }

  .phone-btn {
    font-size: .8rem;
    padding: .4rem .7rem
  }

  .hero {
    padding: 110px 1rem 60px
  }

  .cta-group {
    flex-direction: column;
    align-items: center
  }

  .btn {
    width: 100%;
    max-width: 280px
  }
}





/* HERO */
.hero {
  text-align: center;
  padding: 4rem 1rem 3rem;
  background: linear-gradient(to bottom, rgba(15, 23, 42, .8), var(--navy));
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.hero p {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 1rem;
}

/* COLOR GRID */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.color-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
  transition: transform .3s;
}

.color-card:hover {
  transform: translateY(-8px);
}

.color-swatch {
  height: 120px;
  background: var(--swatch);
  border-bottom: 1px solid #eee;
}

.color-info {
  padding: 1rem;
  text-align: center;
}

.color-name {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: .25rem;
}

.color-note {
  font-size: .8rem;
  color: #666;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #aaa;
  font-size: .85rem;
}

@media (max-width: 768px) {
  .color-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  .color-swatch {
    height: 100px;
  }
}


.color-swatch {
  background-color: var(--swatch-color);
}