/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */

/* ================================
   FONT FACE DECLARATIONS
   Must be top-level (not nested inside :root)
   Must be first rules in critical.css
   ================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Asap Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/asap-condensed-bold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ================================
   TYPOGRAPHY TOKENS - CURLY TAIL SCREEN & WINDOW
   Inter font family - Clean, professional, readable
   Apple-inspired hierarchy and spacing
   ================================ */

:root {

  /* ================================
   COLOR TOKENS - CURLY TAIL SCREEN & WINDOW
   Light theme with Orange/Blue brand colors
   6-Color Palette: 3 Primary + 2 Secondary + White Base
   ================================ */

  /* ================================
     PRIMARY COLORS (3)
     ================================ */

  /* Action Orange - CTAs, buttons, accents */
  --color-orange: #F97316;
  --color-orange-dark: #EA580C;
  --color-orange-light: #FB923C;
  --color-orange-accessible: #b45309;

  /* Trust Blue - Headers, nav, links */
  --color-blue: #1E40AF;
  --color-blue-dark: #1E3A8A;
  --color-blue-light: #2563EB;
  --color-blue-navy: #002a5b;

  /* Text Dark - Body copy */
  --color-text: #111827;
  --color-text-secondary: #374151;
  --color-text-muted: #6B7280;

  /* ================================
     SECONDARY COLORS (2)
     For shadows, highlights, hover states
     ================================ */

  /* Soft Orange - Hover states, light accents */
  --color-orange-soft: #FED7AA;
  --color-orange-subtle: #FFF7ED;

  /* Soft Blue - Card backgrounds, section accents */
  --color-blue-soft: #DBEAFE;
  --color-blue-subtle: #EFF6FF;

  /* ================================
     BASE & EXTENDED COLORS
     ================================ */

  /* White - Page backgrounds (entire site) */
  --color-white: #FFFFFF;
  --color-off-white: #EDEDEC;

  /* Grays - Borders, dividers */
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;

  /* State Colors */
  --color-success: #10B981;
  --color-error: #DC2626;
  --color-warning: #F59E0B;

  /* ================================
     SEMANTIC TOKENS
     Components reference these
     ================================ */

  /* Backgrounds */
  --bg-page: var(--color-white);
  --bg-section: var(--color-white);
  --bg-section-alt: var(--color-off-white);
  --bg-card: var(--color-white);
  --bg-card-hover: var(--color-gray-100);

  /* Text */
  --text-primary: var(--color-text);
  --text-secondary: var(--color-text-secondary);
  --text-muted: var(--color-text-muted);
  --text-inverse: var(--color-white);
  --text-heading: var(--color-text);
  --text-link: var(--color-blue);
  --text-link-hover: var(--color-blue-dark);

  /* Accents */
  --color-accent: var(--color-orange);
  --accent-primary: var(--color-orange);
  --accent-primary-hover: var(--color-orange-dark);
  --accent-secondary: var(--color-blue);
  --accent-secondary-hover: var(--color-blue-dark);

  /* Borders */
  --border-light: var(--color-gray-200);
  --border-medium: var(--color-gray-300);
  --border-strong: var(--color-gray-400);
  --border-focus: var(--color-blue);

  /* ================================
     COMPONENT TOKENS
     ================================ */

  /* Buttons */
  --button-primary-bg: #c5670f;
  --button-primary-bg-hover: #a5570d;
  --button-primary-text: var(--color-white);

  --button-secondary-bg: transparent;
  --button-secondary-bg-hover: var(--color-blue-subtle);
  --button-secondary-text: var(--color-blue);
  --button-secondary-border: var(--color-blue);

  /* Navigation */
  --nav-bg: var(--color-white);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.98);
  --nav-text: var(--color-text);
  --nav-text-hover: var(--color-blue);
  --nav-border: var(--color-gray-200);

  /* Cards */
  --card-bg: var(--color-white);
  --card-border: var(--color-gray-200);
  --card-shadow: rgba(0, 0, 0, 0.1);

  /* Forms */
  --input-bg: var(--color-white);
  --input-border: var(--color-gray-300);
  --input-border-focus: var(--color-blue);
  --input-text: var(--color-text);
  --input-placeholder: var(--color-text-muted);

  /* Footer - Light grey theme */
  --footer-bg: var(--color-gray-200);
  --footer-text: var(--color-text-secondary);
  --footer-heading: var(--color-text);
  --footer-link: var(--color-text-secondary);
  --footer-link-hover: var(--color-orange);

  /* ================================
     OVERLAY & STATE COLORS
     ================================ */

  --overlay-dark: rgba(17, 24, 39, 0.8);
  --overlay-medium: rgba(17, 24, 39, 0.5);
  --overlay-light: rgba(17, 24, 39, 0.3);

  /* Frosted Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Trust Badge Colors */
  --badge-bg: var(--color-blue-subtle);
  --badge-text: var(--color-blue);
  --badge-icon: var(--color-orange);
}

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */


/* Typography Tokens */
:root {
  /* ================================
     FONT FAMILIES
     Single font family (Inter) for consistency
     ================================ */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-logo: 'Asap Condensed', 'Inter', sans-serif;

  /* ================================
     FONT WEIGHTS
     ================================ */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* ================================
     LINE HEIGHTS
     Body text: 1.6-1.8x for readability
     Headings: Tighter for impact
     ================================ */
  --line-height-tight: 1.1;
  --line-height-heading: 1.2;
  --line-height-subheading: 1.3;
  --line-height-body: 1.7;
  --line-height-relaxed: 1.8;

  /* ================================
     LETTER SPACING
     ================================ */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.01em;

  /* ================================
     FONT SIZES - Fluid Typography
     Designed for scanning, not reading
     Bold headlines, clear hierarchy
     ================================ */

  /* Small text */
  --text-xs: clamp(0.75rem, 0.7vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85vw, 0.9375rem);

  /* Body text */
  --text-base: clamp(1rem, 1vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.2vw, 1.25rem);

  /* Subheadings */
  --text-xl: clamp(1.25rem, 1.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 2vw, 1.875rem);

  /* Headings */
  --text-3xl: clamp(1.875rem, 2.5vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 3vw, 3rem);

  /* Hero Headlines */
  --text-5xl: clamp(2.5rem, 4vw, 3.5rem);
  --text-6xl: clamp(3rem, 5vw, 4.5rem);

  /* ================================
     MAX LINE WIDTH
     Optimal reading: 65-75 characters
     ================================ */
  --max-line-width: 70ch;
  --max-line-width-narrow: 55ch;
  --max-line-width-wide: 85ch;

  /* ================================
     PARAGRAPH SPACING
     ================================ */
  --paragraph-spacing: 1.5em;
  --list-spacing: 0.75em;
}

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* ================================
   CSS RESET & BASE STYLES (Critical Path)
   Prevents CLS from deferred theme-base.css/structure.css
   ================================ */

/* Global Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Page Styles */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-normal);
  line-height: var(--line-height-body);
  color: var(--text-primary);
  background-color: var(--bg-page);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Homepage background */
body.page-home {
  background-color: var(--color-white);
}

/* Heading Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--line-height-heading);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: var(--weight-extrabold);
}

/* Paragraph Defaults */
p {
  max-width: var(--max-line-width);
  margin-bottom: var(--paragraph-spacing);
}

p:last-child {
  margin-bottom: 0;
}

/* Link Defaults */
a {
  color: var(--text-link);
  text-decoration: none;
}

/* Image Defaults */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================
   CONTAINER SYSTEM (Critical Path)
   Prevents CLS from deferred structure.css
   ================================ */

.container {
  max-width: 1200px;
  width: calc(100% - 10%);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
  }
}

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* ================================
   NAVIGATION COMPONENT - CURLY TAIL SCREEN & WINDOW
   Clean minimal nav with phone number visible
   Light theme, Apple-inspired
   ================================ */

/* Navigation Bar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background-color: var(--nav-bg);
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  background-color: var(--nav-bg-scrolled);
  box-shadow: var(--shadow-sm);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  max-width: 1400px;
  width: calc(100% - 10%);
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  color: var(--color-text-secondary);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--nav-text);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--nav-text-hover);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-blue);
}

.nav-link.active::after {
  width: 100%;
  background-color: var(--color-blue);
}

/* ================================
   NAV DROPDOWN (CSS-only hover menus)
   ================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>.nav-link {
  padding-right: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background-color: var(--color-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background-color: var(--color-blue-subtle);
  color: var(--color-blue);
}

/* Phone Number in Nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-phone:hover {
  color: var(--color-orange);
}

.nav-phone-icon {
  width: 20px;
  height: 20px;
  color: var(--color-orange);
}

/* CTA Button in Nav */
.nav-cta {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: var(--weight-bold);
  background-color: var(--button-primary-bg);
  color: var(--button-primary-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background-color: var(--button-primary-bg-hover);
  transform: var(--lift-sm);
  box-shadow: var(--shadow-md);
  color: var(--button-primary-text);
}

/* Nav Right Section - Phone + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-content {
    width: calc(100% - 40px);
    padding: 12px 0;
  }

  .hamburger {
    display: flex;
    margin-left: 16px;
  }

  .nav-right .nav-cta {
    padding: 8px 14px;
    font-size: var(--text-xs);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--color-white);
    padding: 80px 24px 24px;
    gap: 0;
    box-shadow: var(--shadow-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 16px 0;
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--border-light);
  }

  .nav-link::after {
    display: none;
  }

  /* Mobile phone - prominent at top */
  .nav-phone-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    margin-bottom: 16px;
    background-color: var(--color-blue-subtle);
    border-radius: var(--radius-md);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-blue);
    text-decoration: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 24px;
    padding: 16px 24px;
  }

  /* Hide desktop phone on mobile nav bar */
  .nav-right .nav-phone {
    display: none;
  }

  /* Nav Dropdown - Mobile: always visible in sidebar */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown>.nav-link {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: 0;
    background-color: transparent;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    font-size: var(--text-base);
    border-bottom: 1px solid var(--border-light);
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--overlay-medium);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: -1;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-links {
    gap: 20px;
  }

  .nav-right {
    gap: 16px;
  }

  .nav-cta {
    padding: 10px 18px;
  }
}

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* ================================
   INDEX V2 - FULL WIDTH HERO
   Full-bleed hero with image background
   Text overlay with dark gradient
   ================================ */

/* Fixed Corner Logo */
.corner-logo {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1001;
  display: block;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.corner-logo img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 3px rgba(255, 255, 255, 1)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: width var(--transition-base), transform var(--transition-base), filter var(--transition-base);
}

.corner-logo:hover img {
  transform: scale(1.05);
}

/* Scrolled state - shrinks to smaller size */
.corner-logo.scrolled img {
  width: 100px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

/* Hide default logo in nav when corner logo is used */
.page-v2 .nav-no-logo .logo {
  display: none;
}

/* Adjust nav content to push right when no logo */
.page-v2 .nav-no-logo .nav-content {
  justify-content: flex-end;
  padding-left: 140px;
}

.page-v2 .nav-links {
  margin-right: 40px;
}

/* Desktop: show first Christmas Light Show link, hide mobile one */
.nav-link-mobile-last {
  display: none;
}

/* Transparent Nav for Hero */
.page-v2 .nav-transparent {
  background-color: transparent;
}

.page-v2 .nav-transparent .nav-link,
.page-v2 .nav-transparent .nav-phone {
  color: var(--color-white);
}

.page-v2 .nav-transparent .nav-link:hover {
  color: var(--color-orange);
}

.page-v2 .nav-transparent .nav-link::after {
  background-color: var(--color-white);
}

.page-v2 .nav-transparent .nav-phone-icon {
  color: var(--color-white);
}

.page-v2 .nav-transparent .hamburger span {
  background-color: var(--color-white);
}

.page-v2 .nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
}

.page-v2 .nav.scrolled .nav-link,
.page-v2 .nav.scrolled .nav-phone {
  color: var(--color-text);
}

.page-v2 .nav.scrolled .nav-phone-icon {
  color: var(--color-orange);
}

.page-v2 .nav.scrolled .hamburger span {
  background-color: var(--color-text);
}

/* ================================
   FULL WIDTH HERO
   ================================ */
.hero-fullwidth {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 60% at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-fullwidth .hero-content {
  max-width: 700px;
  padding-right: 0;
  margin-left: 10%;
}

.hero-fullwidth .hero-content h1 {
  color: var(--color-white);
  font-size: var(--text-6xl);
  line-height: 1.05;
  margin-bottom: 40px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-fullwidth .hero-content h1 .hero-location {
  font-size: 0.55em;
  display: block;
  margin-top: 8px;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: var(--color-white) !important;
}

.hero-fullwidth .hero-content h1 .line-break {
  display: block;
}

.hero-fullwidth p.hero-tagline {
  color: var(--color-white);
  font-size: var(--text-xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
  margin-left: -10px;
  display: inline-block;
  background: rgba(80, 80, 80, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

/* Services 2x2 Grid */
.hero-fullwidth .hero-services-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 32px;
  margin-top: 12px;
  margin-bottom: 36px;
  justify-content: start;
}

.hero-fullwidth .hero-services-grid span {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  position: relative;
  padding-left: 20px;
}

.hero-fullwidth .hero-services-grid span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 50%;
}

.hero-fullwidth .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-fullwidth .hero-cta .btn {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-fullwidth .hero-cta .btn:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.hero-fullwidth .hero-cta .btn-primary,
.hero-form .btn-primary {
  background-color: #de7411;
}

.hero-fullwidth .hero-cta .btn-primary:hover,
.hero-form .btn-primary:hover {
  background-color: #c5670f;
}

/* Google Reviews on dark background - 2 line layout */
.hero-fullwidth .google-reviews {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-fullwidth .google-reviews .reviews-top-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-fullwidth .google-reviews .reviews-rating {
  color: var(--color-text);
}

.hero-fullwidth .google-reviews .reviews-link {
  color: var(--color-blue);
  font-weight: var(--weight-semibold);
}

/* Hero Response Note - Plain white text */
.hero-response-note {
  display: block;
  color: var(--color-white);
  font-size: var(--text-sm);
  margin-bottom: 16px;
}

/* ================================
   HERO GRID - Two-column layout
   Left: headline/CTA, Right: form
   ================================ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.hero-grid .hero-content {
  max-width: none;
  margin-left: 0;
  padding-right: 0;
}

/* Form Column */
.hero-form-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Trust Badges Above Form */
.form-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  white-space: nowrap;
}

/* Hero Form Card */
.hero-form.card {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-lg);
}

.hero-form .card-body {
  padding: 28px 24px;
}

.hero-form-title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-blue-navy);
  text-align: center;
  margin-bottom: 20px;
}

.hero-form .form-group {
  margin-bottom: 14px;
}

.hero-form .form-group label {
  font-size: var(--text-xs);
  margin-bottom: 4px;
}

.hero-form .form-group input,
.hero-form .form-group textarea {
  padding: 10px 12px;
  font-size: var(--text-sm);
}

.hero-form .form-group textarea {
  min-height: 70px;
}

/* Form Checkbox - hero form override */
.hero-form .form-checkbox input[type="checkbox"] {
  accent-color: var(--color-blue);
}

/* Form Privacy Note */
.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 10px;
  margin-bottom: 0;
}

.form-privacy a {
  color: var(--color-blue);
  text-decoration: underline;
}

/* Form Response Note */
.form-response-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Full-width submit button */
.w-full {
  width: 100%;
}

/* ================================
   FORM SUCCESS MESSAGE
   ================================ */
.form-success-message {
  text-align: center;
}

.form-success-message .card {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-lg);
}

.form-success-message .card-body {
  padding: 32px 24px;
}

.success-icon {
  width: 56px;
  height: 56px;
  color: var(--color-success);
  margin: 0 auto 16px;
  display: block;
}

.form-success-message h3 {
  color: var(--color-success);
  font-size: var(--text-2xl);
  margin-bottom: 8px;
}

.form-success-message p {
  color: var(--text-secondary);
  font-size: var(--text-base);
}

/* ================================
   TRUST BAR
   ================================ */
.trust-bar {
  background-color: var(--color-white);
  text-align: center;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.lizard-mascot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: auto;
  pointer-events: none;
  z-index: 10;
}

.trust-bar-content {
  max-width: 800px;
  margin: 0 auto;
}

.trust-headline {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-blue-navy);
  margin-bottom: 8px;
}

.trust-headline.company-name {
  font-family: var(--font-logo);
  font-size: var(--text-3xl);
  letter-spacing: 0.02em;
  color: var(--color-blue-navy);
}

.trust-areas {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-cta {
  margin-top: 40px;
}

/* ================================
   WHY CHOOSE US SECTION
   ================================ */
.why-us-grid {
  gap: 80px;
}

/* Image Slider */
.why-us-slider {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.slider-container {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-out;
}

.slider-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.slider-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slider-slide img.img-top {
  object-position: top center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 2;
}

.slider-arrow:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

.slider-prev {
  left: -22px;
}

.slider-next {
  right: -22px;
}

.why-us-content h2 {
  margin-bottom: 16px;
}

.why-us-content>p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.why-us-content .list-check {
  margin-bottom: 32px;
}

/* ================================
   LIGHT SHOW PROMO SECTION
   ================================ */
.light-show-promo {
  position: relative;
}

/* Floating Mascot */
.lizard-mascot-floating {
  position: absolute;
  top: -40px;
  right: 20px;
  width: 80px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 768px) {
  .lizard-mascot-floating {
    top: -30px;
    right: 10px;
    width: 60px;
  }
}

.light-show-grid {
  gap: 60px;
}

.light-show-content h2 {
  margin-bottom: 16px;
}

.light-show-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.light-show-content p strong {
  color: var(--color-blue);
}

.light-show-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-grid {
  gap: 60px;
}

.contact-info .section-label,
.contact-info h2,
.contact-info>p {
  text-align: center;
}

.contact-info .section-label {
  display: block;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item .feature-icon {
  width: 48px;
  height: 48px;
}

.contact-item .feature-content h3,
.contact-item .feature-content h4 {
  font-size: var(--text-base);
  margin-bottom: 4px;
}

.contact-item .feature-content a,
.contact-item .feature-content p {
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.contact-item .feature-content a:hover {
  color: var(--color-orange);
}

/* Contact Form */
.contact-form-wrapper {
  position: sticky;
  top: 100px;
}

.contact-form.card {
  box-shadow: var(--shadow-lg);
  background-color: var(--color-off-white);
}

.contact-form .card-body {
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group .required {
  color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--input-text);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--input-placeholder);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--input-border-focus);
  box-shadow: 0 0 0 3px var(--color-blue-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================================
   GOOGLE REVIEWS SECTION
   Desktop: All 6 in a row
   Mobile: Swipeable slider with dots
   ================================ */
.reviews-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-slide {
  flex: 0 0 auto;
  max-width: 336px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-white);
}

.review-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.reviews-dots {
  display: none;
}

.reviews-dots {
  display: none;
}

/* ================================
   RESPONSIVE - Full Width Hero
   ================================ */
@media (max-width: 1024px) {

  /* Hero Grid - Stack vertically on tablet */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-fullwidth .hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-fullwidth .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-fullwidth .hero-services-grid {
    justify-content: center;
  }

  .hero-fullwidth .hero-cta {
    justify-content: center;
  }

  .hero-fullwidth .google-reviews {
    margin: 0 auto;
  }

  .hero-fullwidth .hero-tagline {
    font-size: var(--text-2xl);
  }

  .hero-fullwidth .hero-services-grid span {
    font-size: var(--text-base);
  }
}

@media (max-width: 950px) {

  /* Reduce logo size by 30% for tablet/smaller screens */
  .corner-logo img {
    width: 140px;
  }

  .corner-logo.scrolled img {
    width: 70px;
  }
}

@media (max-width: 768px) {

  /* Mobile text size increase - bump all content text up one size */
  p,
  li,
  .card-body p,
  .service-card p,
  .section-header p,
  .contact-info p,
  .why-us-content p,
  .light-show-content p,
  .intro-tagline,
  .intro-areas,
  .feature-content p {
    font-size: var(--text-lg) !important;
  }

  .list-check li {
    font-size: var(--text-lg) !important;
  }

  /* Mobile logo positioning */
  .corner-logo {
    top: 8px;
    left: 8px;
    transition: top var(--transition-base), left var(--transition-base);
  }

  .corner-logo img {
    width: 140px;
    transition: width var(--transition-base);
  }

  .corner-logo.scrolled {
    top: 8px;
    left: 8px;
  }

  .corner-logo.scrolled img {
    width: 70px;
  }

  .page-v2 .nav-no-logo .nav-content {
    padding-left: 90px;
    align-items: center;
  }

  .page-v2 .nav-right {
    display: flex;
    align-items: center;
  }

  .page-v2 .nav-right .nav-cta-mobile {
    margin-top: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .page-v2 .hamburger {
    align-self: center;
  }

  .page-v2 .nav-links {
    margin-right: 0;
    width: 240px;
  }

  /* Mobile nav links need dark text on white background */
  .page-v2 .nav-transparent .nav-links .nav-link {
    color: var(--color-text);
  }

  .page-v2 .nav-transparent .nav-links .nav-link:hover {
    color: var(--color-orange);
  }

  /* Mobile: hide desktop-first Light Show, show mobile-last one */
  .nav-link-desktop-first {
    display: none;
  }

  .nav-link-mobile-last {
    display: block;
  }

  .hero-bg img {
    object-fit: contain;
    object-position: center top;
  }

  .hero-fullwidth {
    min-height: auto;
  }

  .hero-content-wrapper {
    padding-top: 140px;
    padding-bottom: 30px;
  }

  .hero-fullwidth .container {
    width: calc(100% - 16px) !important;
    padding: 0 8px;
  }

  .hero-fullwidth .hero-content {
    text-align: center;
    max-width: none !important;
    padding: 0;
  }

  .hero-fullwidth .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.1;
    padding: 0;
  }

  .hero-fullwidth .hero-content h1 .line-break {
    display: block;
  }

  .hero-fullwidth .hero-tagline {
    font-size: var(--text-2xl);
  }

  .hero-fullwidth .hero-services-grid {
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 32px;
  }

  .hero-fullwidth .hero-services-grid span {
    font-size: var(--text-sm);
  }

  .hero-fullwidth .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 15px;
    padding: 0;
  }

  /* Mobile CTA buttons - tight padding for better text-to-button ratio
     Tested: 10px vertical keeps buttons compact while readable
     Font bumped to text-xl to fill width better on full-width buttons */
  .hero-fullwidth .hero-cta .btn {
    width: 100%;
    max-width: none;
    padding: 10px 12px;
    font-size: 24px;
    font-weight: var(--weight-bold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }

  .hero-fullwidth .hero-cta .btn-primary {
    background-color: #de7411;
    color: var(--color-white);
  }

  .hero-fullwidth .hero-cta .btn-white {
    background-color: rgba(255, 255, 255, 0.75);
    color: var(--color-blue);
  }

  .hero-fullwidth .google-reviews {
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: var(--text-2xl);
    padding: 8px 12px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }

  .hero-fullwidth .google-reviews .reviews-top-line {
    display: flex;
    align-items: center;
  }

  .hero-fullwidth .google-reviews .google-g {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
  }

  .hero-fullwidth .google-reviews .google-g svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .hero-fullwidth .google-reviews .reviews-stars-img {
    width: 125px;
    height: auto;
    display: block;
  }

  .hero-overlay {
    background: radial-gradient(ellipse 85% 75% at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  }

  /* Trust Bar Mobile */
  .trust-bar {
    text-align: center;
  }

  .trust-headline {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
  }

  .trust-headline.company-name {
    font-size: var(--text-2xl);
  }

  .trust-badges {
    gap: 16px;
  }

  /* Services Section Mobile */
  .services-cta {
    margin-top: 50px;
  }

  /* Why Us & Light Show Mobile */
  .why-us-grid,
  .light-show-grid,
  .contact-grid {
    gap: 40px;
  }

  .why-us-slider {
    max-width: 100%;
  }

  .slider-slide img {
    height: 280px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .why-us-content,
  .light-show-content {
    text-align: center;
  }

  .why-us-content .list-check {
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero Form Mobile */
  .hero-form .card-body {
    padding: 24px 16px;
  }

  .hero-form-title {
    font-size: var(--text-lg);
    margin-bottom: 16px;
  }

  .form-trust-badges {
    justify-content: center;
  }

  .form-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
  }

  /* Contact Form Mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    position: static;
  }

  .contact-form .card-body {
    padding: 24px 20px;
  }

  /* Reviews Mobile Slider */
  .reviews-slider {
    margin: 0 -20px;
    padding: 0;
    overflow: visible;
  }

  .reviews-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-slide {
    flex: 0 0 calc(85vw - 24px);
    max-width: calc(85vw - 24px);
    scroll-snap-align: center;
  }

  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px;
  }

  .reviews-dots .dot {
    width: 8px;
    height: 8px;
    border: none;
    padding: 0;
    border-radius: 50%;
    background-color: var(--color-gray-300);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .reviews-dots .dot.active {
    background-color: var(--color-blue);
    transform: scale(1.2);
  }

}

/* Logo - Smaller screens (30% reduction from 140px) */
@media (max-width: 600px) {
  .corner-logo img {
    width: 98px;
  }

  .corner-logo.scrolled img {
    width: 49px;
  }
}

/* Hero Title & Tagline - Smaller screens */
@media (max-width: 480px) {
  .hero-fullwidth .hero-tagline {
    font-size: var(--text-base) !important;
  }
}

@media (max-width: 430px) {
  .hero-fullwidth .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-fullwidth .hero-tagline {
    font-size: var(--text-sm) !important;
  }
}

@media (max-width: 375px) {
  .hero-fullwidth .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-fullwidth .hero-content h1 .hero-location {
    font-size: 0.5em;
  }
}


/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */