@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary-color: #0066CC;
  /* Electric Blue - Keeping as base */
  --cta-color: #05E5AF;
  /* Neon Teal for High Impact Buttons */
  --primary-dark: #004C99;
  --secondary-color: #1A1C2B;
  /* Deep Navy */
  --promo-bg: #054040;
  /* Dark Teal for Promo Bar */
  --accent-color: #FF5722;
  --text-dark: #1A1C2B;
  --text-light: #F5F5F5;
  --bg-light: #F9FAFC;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animation Pulse */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 229, 175, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(5, 229, 175, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(5, 229, 175, 0);
  }
}

/* Promotional Banner */
.promotional-banner {
  background: linear-gradient(90deg, #054040 0%, #006064 100%);
  color: var(--white);
  padding: 15px 0;
  font-size: 1rem;
  position: relative;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-text {
  font-weight: 500;
  display: flex;
  align-items: center;
}

.promo-offer {
  background-color: var(--cta-color);
  color: #003333;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 229, 175, 0.3);
  animation: pulse 2s infinite;
}

.promo-offer:hover {
  background-color: #04c496;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 229, 175, 0.5);
  color: #002222;
}

.promo-offer::before {
  display: none;
}

/* Button Upgrades */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px 0 rgba(0, 102, 204, 0.39);
}

/* New High Impact CTA Class */
.btn-cta {
  background-color: var(--cta-color);
  color: #003333;
  /* Dark text for contrast on neon */
  border: none;
  box-shadow: 0 4px 15px rgba(5, 229, 175, 0.4);
  animation: pulse 2s infinite;
}

.btn-cta:hover {
  background-color: #04c496;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 229, 175, 0.6);
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  font-weight: 600;
  /* Heavier body text for premium feel */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px 0 rgba(0, 102, 204, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.23);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--secondary-color);
  border: 1px solid var(--gray-200);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

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

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Header */
.header {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.02);
}

.logo i {
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.logo:hover i {
  color: var(--cta-color);
}

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

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav__link {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav__link:hover {
  opacity: 1;
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  background-color: transparent;
  color: var(--cta-color);
  padding: 10px 20px;
  border: 2px solid var(--cta-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__cta:hover {
  background-color: var(--cta-color);
  color: #003333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 229, 175, 0.3);
}

.header__cta i {
  font-size: 1rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--white);
  background: transparent;
  border: none;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cta-color);
}

.mobile-toggle:active {
  transform: scale(0.95);
}

/* Hero Section */
.hero {
  position: relative;
  background-image: linear-gradient(rgba(26, 28, 43, 0.75), rgba(26, 28, 43, 0.65)), url('../assets/images/turbo_hero_living_room_1769192473807.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 0;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero__content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.hero__text {
  flex: 1;
  max-width: 600px;
}

.hero__title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  /* Extremely bold */
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 400;
}

.hero__consultation {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
}

.hero__consultation p {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Form Box */
.quote-box {
  background-color: var(--white);
  color: var(--text-dark);
  border-radius: 12px;
  width: 400px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  /* For header containment */
}

/* New Dark Header for Form */
.quote-box__header {
  background-color: var(--secondary-color);
  padding: 20px 30px;
  color: var(--white);
}

.quote-box__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

.quote-box__body {
  padding: 30px;
}

.quote-options {
  display: grid;
  grid-template-columns: 1fr;
  /* Stacked layout looks more premium for long lists, or sticking to grid */
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.quote-option {
  padding: 15px 10px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  /* Pill shape */
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quote-option:hover {
  border-color: #add6ff;
  color: var(--primary-color);
  background-color: rgba(0, 102, 204, 0.05);
}

.quote-option.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.quote-submit {
  width: 100%;
  border: none;
  font-size: 1.1rem;
  padding: 16px;
}

/* Services Grid */
.services {
  padding: 100px 0;
  background-color: var(--bg-light);
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  /* The Lift Effect */
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 204, 0.1);
}

.feature-icon {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 24px;
  background: rgba(0, 102, 204, 0.05);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: inline-block;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Call Strip */
.call-strip {
  background: linear-gradient(135deg, #004C99 0%, #002244 100%);
  text-align: center;
  padding: 80px 0;
  color: var(--white);
  border-top: 2px solid var(--cta-color);
  border-bottom: 2px solid var(--cta-color);
  box-shadow: 0 0 40px rgba(5, 229, 175, 0.15);
  position: relative;
  overflow: hidden;
}

.call-strip h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 800;
}

/* FOMO Timer New Design */
.fomo-timer {
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid #ff4444;
  color: #ffcccc;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
  }
}

.call-strip__offers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-bottom: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.call-strip__offers li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-strip__offers i {
  color: var(--cta-color);
}

/* Installation Section */
.installation {
  padding: 80px 0;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-title {
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.check-list li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: 900;
}

/* Footer */
.footer {
  background-color: #111;
  color: #888;
  padding: 60px 0 20px;
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================ */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Navigation Slide-out */
.nav.mobile-active {
  display: block !important;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: var(--secondary-color);
  z-index: 1001;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1002;
}

.nav.mobile-active .mobile-close {
  display: block;
}

/* ============================================
   EXTRA SMALL DEVICES (Phones, < 576px)
   ============================================ */
@media (max-width: 575px) {

  /* Typography */
  .hero__title {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 1rem !important;
    margin-bottom: 24px;
  }

  .split-title,
  .call-strip h2 {
    font-size: 1.75rem !important;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  /* Header */
  .header {
    padding: 14px 0;
    position: sticky;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .header__content {
    gap: 12px;
  }

  .logo {
    font-size: 1.25rem;
    gap: 8px;
  }

  .logo i {
    font-size: 1.4rem;
  }

  .header__cta {
    padding: 8px 14px;
    font-size: 0.8rem;
    gap: 5px;
  }

  .header__cta i {
    font-size: 0.9rem;
  }

  /* Hide phone text on very small screens */
  .header__cta .phone-text {
    display: none;
  }

  .mobile-toggle {
    display: block;
    font-size: 1.6rem;
    padding: 6px;
  }

  .nav {
    display: none;
  }

  .nav.mobile-active .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav.mobile-active .nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }

  .nav.mobile-active .nav__list li:last-child {
    border-bottom: none;
  }

  .nav.mobile-active .nav__link {
    display: block;
    padding: 16px 20px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    opacity: 1;
  }

  .nav.mobile-active .nav__link::after {
    display: none;
  }

  .nav.mobile-active .nav__link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--cta-color);
  }

  .nav.mobile-active .nav__link:active {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Promotional Banner */
  .promotional-banner {
    padding: 12px 0;
    font-size: 0.85rem;
  }

  .promo-grid {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .promo-text {
    font-size: 0.85rem;
    justify-content: center;
  }

  .promo-offer {
    padding: 10px 20px;
    font-size: 0.8rem;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    justify-content: center;
  }

  /* Hero Section */
  .hero {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .hero__content-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__consultation {
    padding: 20px;
    width: 100%;
  }

  .hero__consultation p {
    font-size: 0.8rem;
  }

  /* Quote Box */
  .quote-box {
    width: 100%;
    max-width: 100%;
  }

  .quote-box__header {
    padding: 16px 20px;
  }

  .quote-box__title {
    font-size: 1.2rem;
  }

  .quote-box__body {
    padding: 20px;
  }

  .quote-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-option {
    padding: 14px;
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .btn-cta,
  .btn-primary {
    width: 100%;
  }

  /* Services/Features */
  .services {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-icon {
    font-size: 2.2rem;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }

  /* Call Strip */
  .call-strip {
    padding: 50px 0;
  }

  .fomo-timer {
    font-size: 0.9rem;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .call-strip__offers {
    flex-direction: column;
    gap: 12px;
    font-size: 1rem;
    padding: 20px;
    margin-bottom: 30px;
  }

  .call-strip__offers li {
    justify-content: center;
  }

  /* Split Layouts */
  .installation,
  .services {
    padding: 50px 0;
  }

  .split-layout {
    flex-direction: column;
    gap: 30px;
  }

  .split-image {
    order: -1;
  }

  .split-content,
  .split-image {
    flex: auto;
    width: 100%;
  }

  .check-list li {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
    font-size: 0.85rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ============================================
   SMALL DEVICES (Landscape Phones, 576px - 767px)
   ============================================ */
@media (min-width: 576px) and (max-width: 767px) {

  /* Typography */
  .hero__title {
    font-size: 2.5rem !important;
  }

  .hero__subtitle {
    font-size: 1.15rem !important;
  }

  .split-title,
  .call-strip h2 {
    font-size: 2rem !important;
  }

  /* Header */
  .mobile-toggle {
    display: block;
  }

  .nav {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 80px 0 50px;
  }

  .hero__content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .quote-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .call-strip__offers {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   MEDIUM DEVICES (Tablets, 768px - 991px)
   ============================================ */
@media (min-width: 768px) and (max-width: 991px) {

  /* Typography */
  .hero__title {
    font-size: 3rem !important;
  }

  .split-title,
  .call-strip h2 {
    font-size: 2.25rem !important;
  }

  /* Header */
  .mobile-toggle {
    display: block;
  }

  .nav {
    display: none;
  }

  /* Hero */
  .hero__content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .quote-box {
    width: 100%;
    max-width: 500px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Split Layouts */
  .split-layout {
    gap: 40px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   LARGE DEVICES (Desktops, 992px - 1199px)
   ============================================ */
@media (min-width: 992px) {

  /* Show desktop navigation */
  .mobile-toggle {
    display: none;
  }

  .nav {
    display: block !important;
  }

  /* Quote Box */
  .quote-box {
    width: 400px;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  /* Split Layouts */
  .split-layout {
    flex-direction: row;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   EXTRA LARGE DEVICES (Large Desktops, >= 1200px)
   ============================================ */
@media (min-width: 1200px) {

  .container {
    max-width: 1200px;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .features-grid {
    gap: 40px;
  }
}

/* ============================================
   LANDSCAPE ORIENTATION SPECIFIC
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero__consultation {
    padding: 15px;
  }

  .nav.mobile-active {
    height: 100vh;
    overflow-y: auto;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

  .header,
  .promotional-banner,
  .mobile-toggle,
  .btn,
  .quote-box,
  .call-strip {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
}

/* ============================================
   FLOATING CLICK-TO-CALL BUTTON
   ============================================ */
.floating-call-button {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

.call-button-container {
  background: linear-gradient(135deg, #1a3a3a 0%, #0d2626 100%);
  border: 3px solid #05E5AF;
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 8px 30px rgba(5, 229, 175, 0.4);
  position: relative;
  min-width: 320px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.call-button-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(5, 229, 175, 0.6);
  border-color: #04c496;
}

.call-button-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: white;
  border: 2px solid #05E5AF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: #1a3a3a;
  font-weight: bold;
  transition: all 0.3s;
  z-index: 10;
}

.call-button-close:hover {
  background: #ff4444;
  border-color: #ff4444;
  color: white;
  transform: rotate(90deg);
}

.call-button-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.call-button-icon {
  width: 40px;
  height: 40px;
  background: #05E5AF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ringPulse 2s infinite;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.call-button-icon i {
  font-size: 1.3rem;
  color: #1a3a3a;
}

.call-button-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
}

.call-button-number:hover {
  color: #05E5AF;
}

.call-button-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-top: 4px;
}

.floating-call-button.hidden {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 575px) {
  .floating-call-button {
    bottom: 20px;
    left: 10px;
    right: 10px;
    transform: none;
  }

  .call-button-container {
    min-width: auto;
    padding: 16px 20px;
  }

  .call-button-number {
    font-size: 1.5rem;
  }

  .call-button-tagline {
    font-size: 0.85rem;
  }

  .call-button-icon {
    width: 35px;
    height: 35px;
  }

  .call-button-icon i {
    font-size: 1.1rem;
  }
}