/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: hello-elementor-child
*/
/*

1) GLOBAL DEFINES
H1-H6 , A 
Container/section
Buttons
Card
Grid/Flex


2) NAVBAR DEFINES
3) HOMEPAGE DEFINES
4) PRODUCT PAGE DEFINES
5) PRODUCT MODEL DEFINES
6) PRODUCT SINGLE DEFINES
7) WARRANTY PAGE DEFINES



 ) REUSEABLE COMPONENTS
*/

/* Globals  */
:root {
  --dodgerblue: #1e90ff; /* Main H1 + navbar hover */
  --dodgerdark: #004e84; /* H2 + buttons */
  --heatwavehaze: #c8102e; /* Accent: borders, highlights */
  --regalblue: #003c6d; /* Icons, bullets */
  --oxfordblue: #2d3748; /* Footer, banners */
  --dividerblue: #eff6ff; /* Optional section background */
  --dividerwhite: #f8f9fa; /* Alternate soft background */
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f1f3f4;
  --gray-medium: #6b7280;
  --gray-dark: #374151;

  --bg-light: #f8fafc; /* Light Card Color -- Maybe? dividerwhite good 2. If on bg accent use this over divwhite*/

  /* checkmark success */
  --checkmark-success: #10b981;

  /* Caution */
  --caution-title: #92400e; /* dark orange title */
  --caution-accent: #f59e0b; /* orange accent */

  /* border color */
  --border-gray: #d1d5db;

  /* sustain */
  --primary-dark-sustainable: #114b3c;
  --eco-brown: #7b4425;
  --primary-sustainable: #1a936f;
  --text-dark-sustainable: #333333;

  /* Gradients */
  --dodgerblue-dark: linear-gradient(
    135deg,
    var(--dodgerblue),
    var(--dodgerdark)
  ); /* Icon BG */

  --dodgerdark-regal: linear-gradient(
    to bottom,
    var(--dodgerdark),
    var(--regalblue)
  ); /* C2A Footer*/

  --caution-background: linear-gradient(
    135deg,
    #fef3c7,
    #fde68a
  ); /* Caution Background */

  /* BoxShadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  /* BorderRadius */
  --border-test-radius: 8px !important;
  --border-test-radius-lg: 12px !important;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem !important;
  line-height: 1.6;
  color: var(--gray-dark);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.68rem;
  color: var(--dodgerblue);
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dodgerdark);
  padding-bottom: 1rem !important;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--dodgerdark);
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dodgerdark);
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dodgerdark);
}

h6 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--dodgerdark);
}

p,
span,
a,
li {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: var(--dodgerblue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dodgerdark);
}

/* Container and Layout */
.container {
  /*max-width: 1280px;*/
  /*margin: 0 auto;*/

  /*padding: 0 0px !important;*/
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.section {
  padding: 80px 1 !important;
  margin: 0 !important;
}

.section-alt {
  background-color: var(--dividerwhite);
}

/* Section Title with Divider */
.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  height: 3px;
  background-color: var(--heatwavehaze);
  width: 60px;
  display: inline-block;
}

.section-intro {
  text-align: center;
}

/* Button Styles START */

.btn-fix {
  width: fit-content !important;
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
}

.btn-fix.btn-primary-fix {
  background-color: var(--dodgerdark) !important;
  color: var(--white) !important;
}

.btn-fix.btn-primary-fix:hover {
  background-color: var(--dodgerblue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px 0 rgb(0 0 0 / 0.3) !important;
}

.btn-fix.btn-secondary-fix {
  background-color: var(--white);
  color: var(--dodgerdark);
  border: 2px solid var(--dodgerdark);
}

.btn-fix.btn-secondary-fix:hover {
  background-color: var(--dodgerdark);
  color: var(--white);
}

.btn-fix.btn-accent-fix {
  background-color: var(--heatwavehaze);
  color: var(--white);
}

.btn-fix.btn-accent-fix:hover {
  background-color: #a00e26;
  transform: translateY(-2px);
}

/* .btn.btn-secondary {
  background-color: var(--white);
  color: var(--dodgerdark);
  border: 2px solid var(--dodgerdark);
}

.btn.btn-secondary:hover {
  background-color: var(--dodgerdark);
  color: var(--white);
}

.btn.btn-accent {
  background-color: var(--heatwavehaze);
  color: var(--white);
}

.btn.btn-accent:hover {
  background-color: #a00e26;
  transform: translateY(-2px);
}  */

/* Regular Button DONE */

/* Elementor buttons START */

.btn .elementor-button {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
}

.btn.btn-primary .elementor-button {
  background-color: var(--dodgerdark);
  color: var(--white);
}

.btn.btn-primary .elementor-button:hover {
  background-color: var(--dodgerblue);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px 0 rgb(0 0 0 / 0.3);
}

.btn.btn-secondary .elementor-button {
  background-color: var(--white);
  color: var(--dodgerdark);
  border: 2px solid var(--dodgerdark);
}

.btn.btn-secondary .elementor-button:hover {
  background-color: var(--dodgerdark);
  color: var(--white);
}

.btn.btn-accent .elementor-button {
  background-color: var(--heatwavehaze);
  color: var(--white);
}

.btn.btn-accent .elementor-button:hover {
  background-color: #a00e26;
  transform: translateY(-2px);
}

/* Elementor buttons DONE */

/* Card Styles */
.card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px 0 rgb(0 0 0 / 0.15);
}

.card-body {
  padding: 2rem;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .section {
    padding: 60px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/*------------------------------------ NAVBAR STYLING SETTINGS ------------------------------------------ */
.header-parent {
  /*height: 13vh !important;*/
  min-height: 80px !important;
  height: 100px !important;
  max-height: 120px !important;
  width: 100% !important;
  padding: 0;
  top: 0px;
  padding-bottom: 10px !important;
  /* background: #faf9fa; */
  /* updatev5 */
  background: white !important;
  box-shadow: var(--shadow-md);
}

/*--LEFT SIDE--*/
.left-parent {
  height: 100% !important;
  max-height: 100%;
  margin: 0;
  padding: 0;
}

.left-logo {
  margin: 0;
  padding: 0;
  height: 100%;
}

.left-logo a {
  display: inline !important;
}

.left-logo img {
  max-height: 100% !important;
  width: auto !important;
}

/*--LEFT SIDE END--*/

/*--Right SIDE--*/
.right-parent {
  height: 100% !important;
  max-height: 100%;
  margin: 0;
  padding: 0;

  display: flex !important;
  align-items: center !important;
}

.nav-men {
  margin: 0;
  padding: 0;

  max-height: 100%;

  height: 100% !important;

  box-sizing: border-box !important;
}

.nav-men nav {
  box-sizing: border-box !important;

  max-height: 100%;

  height: 100% !important;

  position: relative !important;

  padding: 20px 0;
}

.nav-men nav {
  flex-direction: row !important;
  align-items: center !important;
}

/*--Right SIDE END--*/

/*NAVMENU STYLING*/
/*NAVMENU PARENT MENU OPT.*/
.right-parent .nav-men li div span {
  /*font-size: 1.3em !important;*/
  font-size: 17px;
}

.right-parent div#navmen-title,
div#navmen-title span :hover {
  cursor: pointer !important;
}

/*DROP CONTAIN GLOBALS*/
.drop-parent {
  margin-left: auto;
  margin-right: auto;
  box-shadow: 10px 180px 80px rgba(0, 0, 0, 0.1);

  /* v5update */
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* updatev5 */
.holder-fcu {
  padding-bottom: 5px !important;
  padding-right: 10px !important;
  padding-left: 10px !important;
  padding-top: 10px;
  box-shadow: 10px -10px 25px -5px rgb(0 0 0 / 0.1);

  /* v5update found lateR?? */
  padding: 20px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.prod-drop-child {
  padding-top: 1em;
  max-width: 32%;
  padding-bottom: 1.3em;
}

/* .prod-drop-title {
  padding-bottom: 0.4em;
  margin-bottom: 3em;
  border-bottom: 2px solid var(--e-global-color-402d9eb);
}

.prod-drop-title h5 {
  font-size: 1.5em !important;
  color: var(--e-global-color-accent) !important;
  font-weight: 700 !important;
}

.prod-drop-child .prod-drop-title h5 a:hover {
  color: var(--e-global-color-primary);
} */

/* updatev5 start*/
.prod-drop-title-v2 {
  padding-bottom: 0.4rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--e-global-color-402d9eb);
}

.prod-drop-title-v2 h5 {
  font-size: 1.6rem !important;
  color: var(--e-global-color-accent) !important;
  font-weight: 500 !important;
}

.prod-drop-child-v2 .prod-drop-title-v2 h5 a:hover {
  color: var(--e-global-color-primary);
}

/* updatev5 end*/

/* updatev5 start*/
.icon-signoff {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.icon-signoff {
  background: #f0f9ff;
}

.icon-signoff p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #555 !important;
}
/* updatev5 end*/

.nav-link-list {
  padding: 0;
}

.nav-link-list li :hover {
  font-style: italic;
  color: var(--e-global-color-primary);
}

.nav-link-list li {
  list-style: none;
}

.nav-link-list a:before {
  content: "▶ ";
  font-size: 0.5rem;
  margin-right: 0.1rem;
  vertical-align: middle;

  /*margin-right: 0.3em;*/
}

/* .nav-link-list a {
  color: black;
  line-height: 2.1em !important;
  font-size: 1em;
  font-weight: 600;
} */

/* updatev5 start */
.nav-link-list a {
  color: black;
  line-height: 2em !important;
  font-size: 0.97em !important;
  font-weight: 400 !important;
}

/* updatev5 */
.nav-men #navbar-quote {
  background: var(--dodgerblue);
  transition: background-color 0.3s !important;
  border-radius: 0.25rem;
  padding: 0 !important;
}

.nav-men #navbar-quote span {
  color: white !important;
  font-weight: 600 !important;
  transition: background-color 0.3s !important;
  padding: 8px 16px;
}

.nav-men #navbar-quote:hover {
  color: white !important;
  background: var(--regalblue);
  transition: background-color 0.3s !important;
}
/* updatev5 end */

@media (max-width: 1441px) {
  .nav-link-list a {
    font-size: 1.05em;
  }

  .prod-drop-child {
    max-width: 32%;
    width: 30%;
  }

  .drop-parent {
    margin: 0;
  }
}

/*------------------------------------ NAVBAR DONE ------------------------------------*/

/*------------------------------------ HOME PAGE STYLING SETTINGS ------------------------------------*/

/* ------------------Hero Section -----------------------------------*/
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
}

.hero-section {
  max-height: 100vh !important;
  height: 100vh;
}

.video-overlay {
  height: 100vh;
  background: linear-gradient(
    to right,
    rgba(17, 24, 39, 1) 0%,
    rgba(17, 24, 39, 0.65) 50%,
    rgba(17, 24, 39, 1) 100%
  );
}

.hero-content {
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.hero-section .video-overlay .hero-content .e-con-inner {
  align-items: center !important;
  gap: 35px !important;
}

.hero-content .btn.btn-primary.hero {
  align-self: center !important;
}

.hero-content .btn.btn-primary.hero span {
  align-self: center !important;
  font-size: 1.4rem !important;
}

.hero-title .elementor-heading-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.hero-title .elementor-heading-title:first-line {
  color: var(--dodgerblue);
}

.hero-title .elementor-heading-title {
  font-size: 5.676rem !important;
}

.hero-content .hero-descrip {
  color: var(--white) !important;
}

.testing-hero {
  bottom: 0 !important;
}

.hero-stat {
  background-color: #ffffff1a;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-scroll a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  z-index: 10;
  animation: bounce-arrow 2s infinite;
}

.hero-scroll a:hover {
  color: var(--white);
  font-size: 3rem !important;
}

.hero-scroll a::before,
.hero-scroll a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  animation: radiate 2s infinite ease-out;
}

.hero-scroll a::after {
  animation-delay: 1s;
}

@keyframes radiate {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

@keyframes bounce-arrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/*---- About us -----  */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center !important;
  padding: 0;
}

.about-content .section-title h2 {
  text-align: left !important;
  margin-bottom: 2rem;
}

.about-content .section-title:after {
  left: 0;
  transform: none;
}

.about-content h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

.mission-points {
  margin: 2rem 0;
}

.mission-point {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.mission-point i {
  color: var(--heatwavehaze);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Highlight Banner */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-icon {
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.highlight-metric {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dodgerdark);
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.highlight-desc {
  color: var(--gray-medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Sustainable Climate */
.eco-html {
  background: linear-gradient(to bottom, #f6fff8, #ffffff);
}

/* Eco-Friendly Section */
.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 1rem !important;
}

.section-title-eco {
  text-align: center;
  color: var(--primary-dark-sustainable);
  position: relative;
}

.section-title-eco:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  height: 3px;
  background-color: var(--eco-brown);
  width: 60px;
}

.eco-intro {
  padding-top: 1rem;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  color: var(--gray-medium);
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  width: 65%;
}

.eco-benefits h3 {
  margin-top: 0;
  color: var(--primary-dark-sustainable);
  position: relative;
  font-weight: 00;
  padding-bottom: 7px;
  padding-bottom: 1rem;
}

.eco-benefits h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--eco-brown);
}

.eco-list {
  padding-top: 1rem;
  list-style: none;
  font-size: 1.14rem;
}

.eco-list li {
  padding-bottom: 1rem;
}

.eco-list i {
  color: var(--primary-sustainable);
}

.eco-circle {
  text-align: center;
}

.circular-chart {
  display: block;
  width: 200px;
  margin: 0 auto;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke: var(--primary-sustainable);
  stroke-width: 3.8;
  stroke-linecap: round;
  animation: progress 1.5s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.percentage {
  fill: var(--primary-sustainable);
  font-family: "Montserrat", sans-serif;
  font-size: 0.5em;
  font-weight: bold;
  text-anchor: middle;
}

.eco-circle p {
  text-align: center !important;
}

.eco-circle p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark-sustainable);
  text-align: center;
}

/* Financing Banner */
.financing-banner {
  background: linear-gradient(135deg, var(--heatwavehaze) 0%, #a00e26 100%);
  color: var(--white);
  padding: 20px 0;
  text-align: center;
}

.financing-content {
  align-items: center !important;
}

.financing-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.financing-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Explore Our Fan Coils */
.product-card {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card .elementor-cta__content {
  padding: 2rem;
  background: var(--white) !important;
}

/*title*/
.product-card .elementor-cta__content h3 {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  color: var(--dodgerdark);
}

.product-content h3 {
  margin-bottom: 1rem;
  color: var(--dodgerdark);
  text-align: left !important;
}

.product-content p {
  margin-left: unset !important;
  padding-left: unset !important;
  text-align: left !important;
}

.product-content > p {
  margin-bottom: 1.5rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: unset;
}

.product-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--gray-medium);
}

.product-features i {
  color: var(--heatwavehaze);
  margin-right: 0.8rem;
  font-size: 1rem;
}

.product-card .elementor-cta__bg-wrapper {
  height: 250px;
}

.product-card .elementor-cta__bg-wrapper .elementor-cta__bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--white);
}

/*btn a class*/
.product-card .elementor-cta__button {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  background-color: var(--white);
  color: var(--dodgerdark) !important;
  border: 2px solid var(--dodgerdark) !important;
}

.product-card .elementor-cta__button:hover {
  background-color: var(--dodgerdark) !important;
  color: var(--white) !important;
}

/* Application Areas */
.application-section {
  background: var(--dividerblue);
}

.application-areas {
  padding: 2rem;
  background-color: white;
}

.application-title {
  color: var(--white);
}

.applications-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.application-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 320px;
  transition: all 0.3s ease;
}

.application-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.application-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.application-card:hover .application-image img {
  transform: scale(1.05);
}

.application-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 30, 60, 0.9),
    rgba(0, 30, 60, 0.4)
  );
  z-index: 2;
}

.application-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: #ffffff;
  z-index: 3;
  transition: all 0.3s ease;
}

.application-card:hover .application-content {
  transform: translateY(-10px);
}

.application-icon .elementor-icon {
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  fill: var(--white) !important;
  font-size: 2rem;
}

.application-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.application-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Ready2Start */
.final-cta {
  background: linear-gradient(
    135deg,
    var(--oxfordblue) 0%,
    var(--regalblue) 100%
  );
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 4.8rem;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row !important;
}

/* Retrofit Quick summary */
.retrofit-section-home {
  margin: 20px 0 20px;
}

.intro-grid-retrofit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 1380px;
  justify-self: center;
}

.intro-highlights-retrofit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-retrofit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dividerwhite);
  border-radius: 8px;
  border-left: 4px solid var(--dodgerdark);
}

.highlight-item-retrofit i {
  color: var(--dodgerblue);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.intro-visual-retrofit {
  position: relative;
}

.intro-image-retrofit {
  width: 100%;
  max-height: 400px;
  height: 300px;
  object-fit: contain;
  border-radius: 1rem !important;
  box-shadow: 0 4px 15px 0 rgb(0 0 0 / 0.5) !important;
  background: white;
}

.image-overlay-retrofit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px 0 rgb(0 0 0 / 0.2);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.image-overlay-retrofit i {
  color: var(--regalblue);
  font-size: 1.5rem;
}

.image-overlay-retrofit span {
  font-weight: 600;
  color: var(--dodgerdark);
}

.retrofit-btn {
  margin: 30px;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

/* Product card home page -v3 final */

/* Grid layout for the 3 cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch; /* Ensures cards stretch equally */
}

/* Card styling */
.product-card-v2 {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  height: 100%; /* Ensures cards are equal height */
}

.product-card-v2:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image container with fixed height & hover zoom effect */
.product-card-v2 .product-image-home {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 250px; /* Adjust as needed */
}

.product-card-v2 .product-image-home img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.product-card-v2:hover .product-image-home img {
  transform: scale(1.05);
  filter: brightness(85%);
}

/* Content area takes up remaining space so bottoms align */
.product-content-v2 {
  flex: 1; /* Pushes any footer or button area down */
  padding: 1.5rem 1.5rem 0;
}

.product-content-v2 h3 {
  margin-bottom: 0.5rem;
}

.product-content-v2 p {
  margin-bottom: 1rem;
  color: #555;
  word-break: break-word;
  overflow-wrap: break-word;
}

.product-card-v2 .product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.product-card-v2 .product-features li {
  margin-bottom: 0.5rem;
}
.product-card-v2 a {
  align-self: center;
  padding-bottom: 1.5rem;
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image-home {
    height: 180px; /* Slightly smaller on mobile */
  }
}

/* Product card home page -v3 final done */

/* ------------------------------------HOME PAGE STYLING DONE ------------------------------------ */

/*------------------------------------ PRODUCT PAGE STYLING SETTINGS ------------------------------------ */

.product-page {
  margin: 0 !important;
  padding: 0 !important;
}

/*PRODUCTS SECTION OVERVIEW*/
.product-specs {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
  padding: 15px;
  background: var(--dividerblue);
  border-radius: 8px;
}

.spec {
  font-size: 14px;
  color: #555;
}

/*Retrofit Section*/
/*RETRO SECTION*/
.retrofit-section {
  background: var(--dividerwhite);
}

.retrofit-left {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  display: flex;
  justify-content: space-between;
}

.retrofit-left .retrofit-iconbox {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.09);
  background: var(--white) !important;
  border-radius: 12px;
  padding: 20px 10px 20px 10px;
}

.retrofit-left
  .retrofit-iconbox
  .elementor-icon-box-wrapper
  .elementor-icon-box-icon
  .elementor-icon {
  background-color: var(--dividerblue);
  color: var(--dodgerblue);
  fill: var(--dodgerblue);
  font-size: 2rem;
  border-radius: 8px;
}

.retrofit-left
  .retrofit-iconbox
  .elementor-icon-box-wrapper
  .elementor-icon-box-content {
  line-height: 24px;
}

.retrofit-left
  .retrofit-iconbox
  .elementor-icon-box-wrapper
  .elementor-icon-box-content
  .elementor-icon-box-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

/*PRODUCT TABLE BREAKDOWN*/
/* Comparison Table */
.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  margin-top: 40px;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--dodgerdark);
  color: white;
  font-weight: 600;
}

.comparison-header > div {
  padding: 20px;
  text-align: center;
}

.comparison-feature {
  text-align: left !important;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row > div {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-feature {
  justify-content: flex-start !important;
  font-weight: 500;
  color: var(--dodgerdark);
}

.comparison-cell {
  text-align: center;
  font-weight: 500;
  border-radius: 8px;
  margin: 5px;
}

.comparison-cell.excellent {
  background: #e8f5e8;
  color: #2e7d32;
}

.comparison-cell.good {
  background: #fff3cd;
  color: #856404;
}

.comparison-cell.fair {
  background: #f8d7da;
  color: #721c24;
}

/* ---- OUTDATED SYSTEMS -------*/
.dangers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 30px;
  margin: 40px 0 !important;
  align-items: stretch !important;
}

.danger-card > div {
  height: 100% !important;

  display: flex !important;
  flex-direction: column !important;

  justify-content: space-between !important;

  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  text-align: center;
  /*position: relative;*/
}

.danger-icon {
  width: 80px;
  height: 80px;
  background: var(--heatwavehaze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.danger-icon i {
  font-size: 2rem;
  color: white;
}

.danger-card h3 {
  margin: 0 0 20px 0;
  color: var(--dodgerdark);
}

.danger-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.danger-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.danger-list li:before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 8px;
}

.danger-list li:last-child {
  border-bottom: none;
}

.danger-impact {
  margin-top: auto !important;
}

.impact-level {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-level.high {
  background: #ffebee;
  color: var(--heatwavehaze);
}

.impact-level.medium {
  background: #fff3e0;
  color: #f57c00;
}

/*DISASTER CTA*/
.upgrade-cta {
  background: var(--oxfordblue);
  color: white;
  padding: 40px;
  /*border-radius: 12px;*/
  text-align: center;
  /*margin-top: 40px;*/
  align-items: center !important;
}

.upgrade-cta h3 {
  margin: 0 0 15px 0;
  color: white;
}

.upgrade-cta p {
  margin: 0 0 25px 0;
  opacity: 0.9;
}

/*AIR FILTER SYSTEMS*/
/* Air Filter Upgrades */
.filter-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.filter-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 40px 0;
  max-width: 1380px;
  justify-self: center;
}

.filter-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  position: relative;
  transition: transform 0.3s ease;
}

.filter-card:hover {
  transform: translateY(-5px);
}

.filter-card.premium {
  border: 2px solid var(--dodgerblue);
}

.filter-card.hepa {
  border: 2px solid var(--heatwavehaze);
}

.filter-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.filter-card.standard .filter-badge {
  background: var(--regalblue);
  color: white;
}

.filter-card.premium .filter-badge {
  background: var(--dodgerblue);
  color: white;
}

.filter-card.hepa .filter-badge {
  background: var(--heatwavehaze);
  color: white;
}

.filter-image {
  height: 200px;
  overflow: hidden;
}

.filter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-card h3 {
  padding: 20px 20px 0;
  margin: 0;
  color: var(--dodgerdark);
}

.filter-specs {
  padding: 15px 20px;
  background: var(--dividerblue);
  margin: 15px 20px;
  border-radius: 8px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.spec-item:last-child {
  margin-bottom: 0;
}

.spec-label {
  font-weight: 500;
  color: #555;
}

.spec-value {
  font-weight: 600;
  color: var(--regalblue);
}

.filter-features {
  list-style: none;
  padding: 0 20px;
  margin: 0;
}

.filter-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.filter-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--regalblue);
  font-weight: bold;
}

.filter-price {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dodgerdark);
}

.price-note {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

/*INNER COOL ADVTANTAGE*/
/*REMADE - CHECK CSS -- REMOVE OLD ----- START*/
.advantage-tabs {
}

#tabs-energy-motor span:before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
}

#tabs-flood-warn span:before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
}

#tabs-adv-wire span:before {
  content: "\f1e6";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
}

#tabs-warranty span:before {
  content: "\f132";

  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
}

.advantage-tabs .e-n-tabs-heading {
  border-bottom: 1px solid rgb(222, 226, 230);
  align-content: start !important;
  align-self: start !important;
  justify-content: start !important;
  width: 100%;
}

.advantage-tabs .e-n-tabs-heading .e-n-tab-title {
  background: transparent;
  gap: 0px !important;
  padding: 16px 16px !important;
}

.advantage-tabs .e-n-tabs-heading .e-n-tab-title:hover {
  color: var(--dodgerblue) !important;
  background: transparent !important;
}

.advantage-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="true"] {
  color: var(--dodgerdark) !important;
  background: transparent !important;
  border-bottom: 1px solid var(--dodgerdark);
}

.tabs-image img {
  border-radius: 12px !important;
}

/*INSIDE CONTENT*/

.tab-descrip {
  color: var(--grey-medium);
  font-size: 1rem !important;
  margin-bottom: 1rem !important;
}

.tab-features {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 20px;
}

.tab-features li {
  margin-bottom: 0.8rem;
}

.tab-features i {
  margin-right: 0.8rem;
  color: var(--dodgerblue);
}

/*REMADE - CHECK CSS -- REMOVE OLD ----- DONE*/

/* //THIS IS FOR NEW ADV SLIDE MADE ---- START//  */
.advtab {
  width: 1280px;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

.advantage-tabs {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.advantage-tabs-bar {
  display: flex;
  border-bottom: 1px solid rgb(222, 226, 230);
  align-content: start;
  align-self: start;
  justify-content: start;
  column-gap: 10px;
}

.advantage-tabs-bar button {
  background: unset;
  border: 1px solid transparent;
  border-bottom: none;
  color: var(--dodgerdark);
  padding-bottom: 5px;
}

.tab-content[hidden] {
  display: none;
}

.advantage-tabs-bar button[aria-selected="true"] {
  color: var(--dodgerdark);
  background: transparent;
  border-bottom: 2px solid var(--dodgerdark);
  transition-duration: 0s !important;
}

.advantage-tabs-bar button:hover {
  color: var(--dodgerblue) !important;
  background: transparent !important;
}

.tab-content {
  padding-top: 10px;
}

.tabinside {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  margin-top: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.tab-left {
  flex: 1;
}

.tab-left p {
  padding: 10px 0 10px;
}

.tab-img-container {
  /* Fixed width */
  width: 450px;
  /* Fixed height */
  height: 320px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.tab-img-container img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: contain;
}

.tab-features li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  color: var(--dodgerblue);
  font-weight: 900;
  margin-right: 0.5rem;
}

/* //THIS IS FOR NEW ADV SLIDE MADE --- DONE//  */

/* ------------------------------------ PRODUCT PAGE DONE ------------------------------------ */

/* ------------------------------------PRODUCT MODEL PAGE  ------------------------------------ */

/* Product LOOP CARD */
/* Explore Our Fan Coils */
.product-card-fcu-page {
  border-radius: 8px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card-fcu-page:hover {
  transform: translateY(-10px);
}

.product-card-fcu-page .elementor-cta__content {
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-top: 1rem !important;
  background: var(--white) !important;
}

/*title*/
.product-card-fcu-page .elementor-cta__content h3 {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  color: var(--dodgerdark);
  margin-top: 0 !important;
}

.product-content-fcu-page h3 {
  margin-bottom: 0.8rem;
  color: var(--dodgerdark);
  text-align: left !important;
  margin-top: 0 !important;
}

.product-content-fcu-page p {
  margin-left: unset !important;
  padding-left: unset !important;
  text-align: left !important;
}

.product-content-fcu-page > p {
  margin-bottom: 1rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

.product-features-fcu-page {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: unset;
}

.product-features-fcu-page li {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem !important;
  color: var(--gray-medium);
}

.product-features-fcu-page i {
  color: var(--heatwavehaze);
  margin-right: 0.4rem;
  font-size: 1rem;
}

.product-card-fcu-page .elementor-cta__bg-wrapper {
  height: 250px;
}

.product-card-fcu-page .elementor-cta__bg-wrapper .elementor-cta__bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--gray-light);
}

/*btn a class*/
.product-card-fcu-page .elementor-cta__button {
  display: inline-block;
  padding: 15px 45px;
  border: none;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  background-color: var(--white);
  color: var(--dodgerdark) !important;
  border: 2px solid var(--dodgerdark) !important;
  font-size: 1.1rem !important;
}

.product-card-fcu-page .elementor-cta__button:hover {
  background-color: var(--dodgerdark) !important;
  color: var(--white) !important;
}

/* ///// */
.product-content-fcu-page .product-specs {
  display: none !important;
}

.fcu-all-models-intro .section-title {
  margin-bottom: 2rem !important;
}
/* edit */
/* Ensure outer container fills height */
.fcu-all-models-container .e-loop-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Let prod-card-loop fill and flex */
.fcu-all-models-container .prod-card-loop {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Force the CTA widget to fill all available height */
.fcu-all-models-container
  .product-card-fcu-page.elementor-widget-call-to-action {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Make the .elementor-cta container grow */
.fcu-all-models-container .elementor-cta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Make .elementor-cta__content fill the card */
.fcu-all-models-container .elementor-cta__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pushes button to bottom */
}

/*------------------------------------PRODUCT MODEL PAGE DONE  ------------------------------------ */

/* ------------------------------------ PRODUCT SINGLE PAGE  ------------------------------------ */
/* FCU - Page  */
.fcu-page-parent {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  z-index: 1 !important;
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  gap: 0px;
}

/* QUICK NAV LINKS - SINGULAR PROD */
/* fcu-nav-holder = name of html widget */
.fcu-quick-nav,
.fcu-nav-holder {
  background: var(--oxfordblue);
  top: 0 !important;
  position: sticky !important;
  overflow: hidden !important;
  z-index: 100 !important;
}

.fcu-nav-options {
  color: white;
  display: flex;
  justify-self: center;
}

.fcu-nav-options li {
  list-style: none !important;
  padding: 20px;
  font-size: 1.1rem;
  border-bottom: 3px solid transparent;
}

.fcu-nav-options li a {
  color: white;
  padding: 20px;
}

.fcu-nav-options li:hover {
  background-color: rgba(0, 60, 109, 0.3);
  border-bottom-color: var(--dodgerblue);
}

/* Model Layout  */
/*test*/
.test-model-info {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 30%;
}

.test-model-ETL {
  width: 14%;
  height: auto;
  align-self: center;
  text-align: center;
}

.test-model-ETL:after {
  content: "5017363";
  font-weight: bold;
}

.test-model-ETL:before {
  content: "UL STD 508";
  font-weight: bold;
}

/*Main Parent*/
.model-layout-info-holder {
  /*display: flex;*/
  /*flex-direction: row-reverse;*/

  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  border-radius: 8px;
  width: 1380px;
  justify-self: center;

  display: grid !important;
  grid-template-columns: auto auto;
}

/*Right Side - Model Info*/
.model-details {
  padding: 20px;
  grid-row: 1;
  grid-column: 2;
}

.model-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  flex-direction: column;
}

.model-header h3 {
  margin: 0;
  color: var(--dodgerdark);
  font-size: 1.8rem;
}

/* .model-header h3:before */
.model-series-header {
  display: block;
  content: "HZ-300 Series";
  font-size: 1.2rem;
  color: var(--dodgerblue);
  margin-bottom: 0.5rem;
}

.model-price {
  text-align: right;
  color: #666;
  font-size: 14px;
}

.model-price span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dodgerdark);
}

.model-description {
  margin-bottom: 30px;
  color: #666;
  line-height: 1.6;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.perf-item {
  text-align: center;
  padding: 15px;
  background: var(--dividerwhite);
  border-radius: 8px;
  border: 1px solid #eee;
}

.perf-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.perf-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--regalblue);
}

.model-features {
  margin-bottom: 30px;
}

.model-features h4 {
  margin: 0 0 15px 0;
  color: var(--dodgerdark);
  font-size: 1.1rem;
}

.model-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.model-features li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #666;
  font-size: 14px;
}

.model-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--regalblue);
  font-weight: bold;
}

.model-applications {
  margin-bottom: 30px;
}

.model-applications h4 {
  margin: 0 0 15px 0;
  color: var(--dodgerdark);
  font-size: 1.1rem;
}

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* .application-tags > * {
    background: var(--regalblue);
      color: white;
      padding: 4px 12px;
      border-radius: 15px;
      font-size: 12px;
      font-weight: 500;
} */

.app-tag {
  background: var(--regalblue);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.model-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  flex-direction: row !important;
  justify-self: center;
}

/*Left side - Model dimensions*/
.model-image-section {
  background: var(--dividerblue);
  padding: 20px;
  grid-column: 1;
  grid-row: 1;
}

/* .model-image:after {
  content: " HZ-300";
  border-bottom: 1px solid #e0e8f0;
  display: block;
} */

.model-image-series-name {
  border-bottom: 1px solid #e0e8f0;
  display: block;
  text-align: center !important;
  padding: 0.5rem 0 0.5rem;
  margin-bottom: 1rem;
  align-self: center !important;
}

/* Container for the entire image gallery (main image + thumbnails) */
.model-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Image Container - This will enforce the static size */
.model-image-container {
  width: 400px;
  height: 400px;
  background-color: white;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 3px 4px 1px rgb(0 0 0 / 0.1);
}

/* The actual Main Image */
#main-image {
  /* max-width: 100%;
  max-height: 100%; */
  width: 100%;
  height: 100%;
  display: block;
  /* object-fit: cover; */
  object-fit: contain;
}

.main-image-link {
  display: contents;
}

/* Thumbnail Container */
.thumbnail-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 400px;
}

/* Individual Thumbnail Images */
.thumbnail-fix {
  /* max-width: 85px; */
  max-height: 85px;
  width: 120px;
  /* height: 80px; */
  box-shadow: 0 1px 7px 0 rgb(0 0 0 / 0.1) !important;
  border: 1px solid #ddd !important;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease;

  object-fit: contain !important;
  object-position: center;
  background: white;
}

.thumbnail-fix:hover {
  border-color: #007bff;
  transform: scale(1.05);
}

.model-dimensions h4 {
  color: var(--dodgerdark);
  margin: 0 0 15px 0;
  font-size: 1rem;
}

.dimension-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e8f0;
  font-size: 14px;
}

.dimension-item:last-child {
  border-bottom: none;
}
/* Technical Specifications */
.section-specification {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.spec-categories {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.spec-category h3 {
  margin: 0 0 25px 0;
  color: var(--dodgerdark);
  font-size: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--heatwavehaze);
}

.spec-table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.spec-row {
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  /* min-height: 55px; */
  align-items: stretch;
}

.spec-row.header {
  background: var(--dodgerdark);
  color: white;
  font-weight: 600;
}

.spec-row:not(.header):nth-child(even) {
  background: var(--dividerwhite);
}

.spec-cell {
  padding: 15px 20px;
  border-right: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Physical Specifications Physical Images Dimension Images */

.physical-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
}

.physical-image-container {
  max-width: 400px;
  max-height: 400px;
  width: 300px;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.physical-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid black;
}

/* test remove after! */
/* REMOVED MIN HEIGHT FROM SPECROW */ /* min-height: 55px; */
.spec-cell:empty {
  display: none;
}

.spec-row:empty {
  display: none;
}
/* test remove after! */

.spec-cell:last-child {
  border-right: none;
}

.spec-row.header .spec-cell {
  border-right-color: rgba(255, 255, 255, 0.2);
  justify-content: center;
  white-space: normal;
}

.section-resources {
  background: var(--dividerwhite) !important;
  padding: 20px 0 20px;
  margin: 20px 0 20px;
}

.table-holder {
  width: 1380px;
  justify-self: center !important;
}

/* FCU Gallery — Installation Pictures */
.fcu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  gap: 2rem;
  width: 1380px;
  justify-self: center;
}

.fcu-gallery-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}

.fcu-gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.fcu-gallery-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fcu-gallery-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.fcu-gallery-image img {
  width: 100%;
  height: 280px;
  /* object-fit: cover; */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fcu-gallery-image:hover img {
  transform: scale(1.05);
}

.fcu-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.fcu-gallery-image:hover .fcu-gallery-overlay {
  opacity: 1;
}

.fcu-gallery-info {
  color: white;
  margin-bottom: 1rem;
}

.fcu-gallery-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.fcu-gallery-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.fcu-gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fcu-gallery-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ------------------------------------PRODUCT SINGLE DONE  ------------------------------------ */

/* ------------------------------------ WARRANTY PAGE START ------------------------------------ */
/* Warranty Overview */
.warranty-overview {
  padding: 1rem 1rem 2rem;
  background: var(--white);
  border-radius: var(--border-test-radius-lg);
  margin-bottom: 4rem;
  box-shadow: var(--shadow-sm);
  box-sizing: content-box;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.warranty-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-test-radius);

  border: 1px solid var(--border-gray);
  background: var(--dividerwhite);
}

.warranty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.warranty-icon {
  width: 80px;
  height: 80px;
  background: var(--dodgerblue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.warranty-icon i {
  font-size: 2rem;
  color: white;
}

.warranty-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--regalblue);
}

.warranty-card p {
  color: var(--gray-medium);
  line-height: 1.6;
}

/* Factory Warranty Details */
.factory-warranty {
  padding: 2rem 0;
  background: var(--white);
  border-radius: var(--border-test-radius-lg);
  margin-bottom: 4rem;
  box-shadow: var(--shadow-sm);
}

.warranty-header {
  text-align: center;
  margin-bottom: 3rem;
}

.warranty-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--regalblue);
}

.warranty-intro {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

.warranty-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  width: 1180px !important;
  justify-self: center;
}

.warranty-detail-card {
  background: var(--dividerwhite);
  border-radius: var(--border-test-radius);
  padding: 2rem;
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  gap: 1.5rem;

  flex-direction: column !important;
}

.warranty-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.warranty-period {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.period-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--dodgerblue);
  line-height: 1;
}

.period-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--regalblue);
}

.period-text small {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.warranty-coverage h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--regalblue);
}

.warranty-coverage p {
  color: var(--gray-medium);
  line-height: 1.6;
}

.warranty-conditions {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.condition-important {
  background: var(--caution-background);
  padding: 2rem;
  border-radius: var(--border-test-radius);
  border-left: 4px solid var(--caution-accent);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.condition-important i {
  color: var(--caution-accent);
  font-size: 3.9rem;
  margin-top: 0.25rem;
}

.condition-important h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--caution-title);
}

.condition-important p {
  color: var(--caution-title);
  line-height: 1.6;
  margin: 0;
}

.warranty-validity,
.warranty-exclusions {
  background: var(--dividerwhite);
  padding: 2rem;
  border-radius: var(--border-test-radius);
  border: 1px solid var(--border-gray);
  width: 1180px !important;
  justify-self: center;
}

.warranty-validity h4,
.warranty-exclusions h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--regalblue);
}

.warranty-validity ul,
.warranty-exclusions ul {
  list-style: none;
  padding-left: 0;
}

.warranty-validity li,
.warranty-exclusions li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-medium);
}

.warranty-validity li::before {
  content: "✓";
  color: var(--checkmark-success);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.warranty-exclusions li::before {
  content: "✗";
  color: var(--heatwavehaze);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Maintenance Requirements */
.maintenance-requirements {
  padding: 2rem 0;
  background: var(--white);
  border-radius: var(--border-test-radius-lg);
  margin-bottom: 4rem;
  box-shadow: var(--shadow-sm);
}

.maintenance-header {
  text-align: center;
  margin-bottom: 3rem;
}

.maintenance-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--regalblue);
}

.maintenance-header p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

.maintenance-checklist {
  margin-bottom: 3rem;
}

.checklist-intro {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--dividerwhite);
  border-radius: var(--border-test-radius);
  border: 1px solid var(--border-gray);
  width: 1180px;
  justify-self: center;
}

.maintenance-icon {
  width: 80px;
  height: 80px;
  background: var(--dodgerblue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.maintenance-icon i {
  font-size: 2rem;
  color: white;
}

.checklist-intro h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--regalblue);
}

.checklist-intro p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  width: 1180px !important;
  justify-self: center !important;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dividerwhite);
  border-radius: var(--border-test-radius);
  border: 1px solid var(--border-gray);
}

.checklist-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
}

.checklist-item i {
  color: var(--dodgerblue);
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
}

.checklist-item span {
  color: var(--gray-medium);
  font-weight: 500;
}

.maintenance-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 1180px !important;
  justify-self: center;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: var(--dividerwhite);
  border-radius: var(--border-test-radius);
  border: 1px solid var(--border-gray);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--dodgerblue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: white;
}

.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--regalblue);
}

.benefit-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 0;
}

/* Warranty Terms */
.warranty-terms {
  padding: 4rem 0;
  margin-bottom: 4rem;
}

.terms-container {
  margin: 0 auto;
}

.terms-content {
  width: 1380px !important;
  display: flex;
  gap: 1rem !important;
  justify-self: center !important;
}

.terms-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--regalblue);
}

.terms-section {
  margin-bottom: 2.5rem;
  padding: 0.8rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--border-test-radius);
  background: var(--dividerwhite);
  box-shadow: var(--shadow-lg);
}

.terms-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--regalblue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms-section h3 i {
  color: var(--dodgerblue);
}

.terms-section ul {
  list-style: none;
  padding-left: 0;
}

.terms-section li {
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  color: var(--gray-medium);
}

.terms-section li::before {
  content: "•";
  color: var(--dodgerblue);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.warranty-contact-dark {
  background-image: linear-gradient(
    to bottom,
    var(--dodgerdark),
    var(--regalblue)
  );
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  padding: 0;
  margin: 0;
}

/* Enhanced Contact Section */
.emergency-note-dark {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.emergency-note-dark i {
  font-size: 1.5rem;
  opacity: 0.9;
}

.emergency-note-dark p {
  margin: 0;
  font-size: 1.1rem;
}

.contact-item-dark a {
  color: inherit;
  text-decoration: none;
}

.contact-item-dark a:hover {
  text-decoration: underline;
}

.emergency-note-dark a:hover {
  text-decoration: underline !important;
}

/* Warranty Contact */
.contact-card-dark {
  display: flex;
  flex-direction: column;
  justify-self: center;
  color: white;
  padding: 1rem 0 2rem;
  text-align: center;
}

.contact-card-dark h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--white);
}

.contact-info-dark {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: space-between;
  flex-direction: column !important;
}

.contact-item-dark {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.contact-item-dark i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.contact-item-dark strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-item-dark p {
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.contact-item-dark small {
  opacity: 0.7;
  font-size: 0.9rem;
}

.contact-btn-dark {
  padding-top: 1.8rem;
}

.contact-btn-dark a {
  font-size: 1.1rem;
}

@media (max-width: 1401px) {
  .warranty-grid,
  .process-steps,
  .instructions-container,
  .warranty-details-grid,
  .maintenance-benefits {
    width: 1200px !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;

    box-shadow: var(--shadow-lg);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-header h2,
  .welcome-content h2,
  .warranty-header h2,
  .maintenance-header h2 {
    font-size: 2rem;
  }

  .warranty-grid,
  .process-steps,
  .instructions-container,
  .warranty-details-grid,
  .maintenance-benefits {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .instruction-card {
    flex-direction: column;
    text-align: center;
  }

  .warranty-detail-card {
    flex-direction: column;
    text-align: center;
  }

  .checklist-intro {
    flex-direction: column;
    text-align: center;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    width: 1180px;
    justify-self: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .emergency-note {
    flex-direction: column;
    text-align: center;
  }

  .condition-important {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .welcome-content h2 {
    font-size: 1.8rem;
  }

  .welcome-text {
    font-size: 1.1rem;
  }

  .welcome-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .warranty-overview,
  .warranty-terms,
  .warranty-registration,
  .claim-process,
  .quick-start-guide,
  .factory-warranty,
  .maintenance-requirements {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }

  .warranty-card,
  .step,
  .registration-form,
  .instruction-card,
  .warranty-detail-card {
    padding: 1.5rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .period-number {
    font-size: 2rem;
  }

  .instruction-number {
    margin-bottom: 1rem;
  }
}

/* ------------------------------------ WARRANTY PAGE DONE  ------------------------------------ */

/* ------------------------------------ FINANCE PAGE START  ------------------------------------ */
/* Finance page wrapped in containers with name -- change too div */

/* Finance First Section */
.finance-finance-trust {
  padding-top: 2rem;
  margin-bottom: 4rem;
}

.finance-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.finance-trust-content {
  padding-right: 2rem;
}

.finance-benefits-list {
  margin-top: 2rem;
}

.finance-benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center !important;
  padding: 0 0 0 1rem;
  background: var(--dividerwhite);
  border-radius: var(--border-test-radius-lg);
}

.finance-benefit-item i {
  width: 50px;
  height: 50px;
  background: var(--dodgerblue-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.finance-benefit-item div h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dodgerdark);
  margin-bottom: 0.5rem;
}

.finance-benefit-item div p {
  color: var(--oxfordblue);
  opacity: 0.8;
  font-size: 0.95rem;
}

.finance-trust-image {
  position: relative;
}

.finance-trust-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

/* finance second section */
.finance-why {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  background: var(--dividerwhite);
}

.finance-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.finance-benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  transition: all 0.3s ease;
  border: 1px solid var(--dividerblue);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.finance-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.finance-benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--dodgerblue-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.finance-benefit-icon i {
  font-size: 1.5rem;
  color: white;
}

.finance-benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.finance-benefit-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dodgerdark);
  margin-bottom: 1rem;
}

.finance-benefit-content p {
  color: var(--oxfordblue);
  opacity: 0.8;
  flex: 1;
}

/* finance retrofit */
.finance-retrofit {
  padding-top: 2.5rem;
  padding-bottom: 4rem !important;
}

.finance-retrofit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.finance-retrofit-content {
  padding-right: 2rem;
}

.finance-retrofit-benefits {
  margin: 2rem 0;
}

.finance-retrofit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.finance-retrofit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--regalblue), var(--dodgerdark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.finance-retrofit-icon i {
  color: white;
  font-size: 1.2rem;
}

.finance-retrofit-text h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--dodgerdark);
  margin-bottom: 0.5rem;
}

.finance-retrofit-text p {
  color: var(--oxfordblue);
  opacity: 0.8;
  font-size: 0.95rem;
}

.finance-retrofit-cta {
  margin-top: 2rem;
}

.finance-retrofit-visual {
}

.finance-retrofit-image {
  width: 100%;
  height: 550px !important;
  object-fit: contain !important;
  border-radius: 1rem !important;
}

/*Badge & Overlay Start*/

.finance-retrofit-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  border-radius: 0 0 12px 12px;
  color: white;
}

.finance-overlay-content-retrofit h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.finance-overlay-content-retrofit p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.finance-efficiency-badge-retrofit {
  display: inline-block;
  background: var(--heatwavehaze);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/*Badge & Overlay Done*/

/* Finance Options Section  */

.finance-financing-options {
  padding-top: 2.5rem;
  background: var(--dividerwhite);
  box-sizing: content-box !important;
  padding-bottom: 4rem;
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
  justify-self: center !important;
  flex-direction: row-reverse !important;
}

.finance-financing-options .e-con-inner {
  margin: 0 !important;
  padding: 0 !important;
  min-width: 1380px !important;
}

.finance-options-html {
  min-width: 1380px !important;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
  justify-items: center !important;
  justify-self: center !important;
  align-self: center !important;
  align-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

.finance-plans-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 1380px !important;
  margin: 0 !important;
  padding-top: 1.5rem;
}

.finance-plan-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.finance-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.finance-plan-header {
  padding: 1rem;
  text-align: center;
  color: var(--oxfordblue);
  position: relative;
  background: white;
}

.finance-plan-header.short-term,
.finance-plan-header.medium-term,
.finance-plan-header.balanced-term,
.finance-plan-header.long-term {
  background: white;
}

.finance-plan-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.finance-plan-icon i {
  font-size: 2rem;
  color: white;
}

.finance-plan-header h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dodgerdark);
}

.finance-plan-subtitle {
  opacity: 0.7;
  font-size: 1.1rem;
  color: var(--oxfordblue);
  margin-top: 0.5rem;
}

.finance-plan-body {
  padding: 1rem;
  flex: 1;
}

.finance-plan-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.finance-plan-benefit i {
  color: var(--regalblue);
  font-size: 1rem;
}

.finance-plan-benefit span {
  color: var(--oxfordblue);
  font-size: 0.95rem;
}

/* Finance C2A */
.c2a-finance {
  padding-top: 2.5rem;
}

.finance-contact-methods {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  padding: 20px;
}

.finance-contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: var(--dividerwhite);
  transition: var(--transitionSIDEBAR);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.finance-contact-method:hover {
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.05),
    rgba(93, 176, 255, 0.05)
  );
}

.finance-contact-icon {
  vertical-align: center;
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  flex-shrink: 0 !important;
}

.finance-contact-method h4 {
  margin-top: 0px !important;
  margin-bottom: 8px !important;
}

.finance-contact-method p {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

/* Finance Form */
.finance-page-form
  .elementor-field-group
  .elementor-field:not(.elementor-select-wrapper) {
  border-color: #e5e7eb;
  margin-top: 0.2rem;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}

.finance-page-form {
  margin-top: 1rem;
  background: var(--dividerwhite);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.finance-page-form .elementor-form-fields-wrapper {
  margin-top: 0.8rem;
}

.finance-page-form .elementor-form {
  margin-top: 1rem;
}

.finance-page-form label {
  font-size: 1rem;
  color: black;
  padding-bottom: 0.8rem !important;
  margin-left: 0.8rem;
  font-weight: 600 !important;
}

.finance-page-form .elementor-form-fields-wrapper .elementor-field-type-submit {
  /*background: red;*/
  width: 100%;
  display: flex;
  justify-content: center !important;
  margin-top: 1.1rem;
}

#finance-form-btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  /*aa?*/
  background-color: var(--dodgerdark) !important;
  color: var(--white) !important;
  /*aa*/
  width: 75% !important;
}

#finance-form-btn:hover {
  background-color: var(--dodgerblue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px 0 rgb(0 0 0 / 0.3) !important;
}

/* ------------------------------------ FINANCE PAGE DONE  ------------------------------------ */

/* ------------------------------------ CAREER PAGE START  ------------------------------------ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--dividerblue);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--dodgerblue);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: var(--dodgerdark);
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.benefit-card p {
  color: var(--gray-dark);
  line-height: 1.6;
}

.c2a-parent-careers {
  padding: 0px;
  margin: 0px;
}

/* CTA Section */
.careers-cta {
  padding: 80px 0;
  background: var(--oxfordblue);
  color: var(--white);
  text-align: center;
}

.cta-content-careers h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
}

.cta-content-careers p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.careers-linkedin-button,
.careers-email-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.careers-linkedin-button {
  background: #0077b5;
  color: var(--white);
}

.careers-linkedin-button:hover {
  background: #005885;
  transform: translateY(-2px);
  color: var(--white);
}

.careers-email-button {
  background: var(--heatwavehaze);
  color: var(--white);
}

.careers-email-button:hover {
  background: #a00e26;
  transform: translateY(-2px);
  color: var(--white);
}

/* ------------------------------------ CAREER PAGE DONE  ------------------------------------ */

/* ------------------------------------ QUOTE PAGE START  ------------------------------------ */
/* quote page */
.quote-sec {
  background-color: var(--dividerwhite);
}

.quote-page {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0 10px 0 10px;
}

.quotepage-form {
  content: " ";
  display: block;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

/* quotepage form */
.quotepage-form
  .elementor-field-group
  .elementor-field:not(.elementor-select-wrapper) {
  border-color: #e5e7eb;
}

.quotepage-form label {
  font-size: 1rem;
  color: black;
  padding-bottom: 0.5rem !important;
}

/* sidebar-contact */
.sidebar-contact {
  padding-top: 0px !important;
}

.sidebar-contact {
  padding: 40px 30px;
  width: 390px !important;
  box-sizing: border-box !important;
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: fit-content !important;
  /*top: 20px;*/
  z-index: 1 !important;
}

.sidebar-contact-methods {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.sidebar-contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: var(--dividerwhite);
  transition: var(--transitionSIDEBAR);
  /*justify-content: ;*/
}

.sidebar-contact-method:hover {
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.05),
    rgba(93, 176, 255, 0.05)
  );
}

.sidebar-contact-icon {
  vertical-align: center;
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  flex-shrink: 0 !important;
}

.sidebar-contact-method h4 {
  margin-top: 0px !important;
  margin-bottom: 8px !important;
}

.sidebar-contact-method p {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.sidebar-trust-indicators {
  display: flex !important;
  flex-direction: column !important;
  row-gap: 10px;
}

.sidebar-trust-indicators > h4 {
  font-size: 1.3rem !important;
}

.sidebar-trust-indicators h4:before {
  content: "";
  display: block;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.sidebar-trust-item {
  display: flex !important;
  flex-direction: row;
  gap: 10px;
  row-gap: 10px !important;
}

.sidebar-trust-item i {
  vertical-align: center;
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0 !important;
}

.sidebar-trust-indicators span {
  font-size: 1.2rem;
}

/* emergency notice */
.warranty-conditions {
  z-index: 5;
  margin-left: -30px !important;
  margin-right: -30px !important;
  margin-bottom: -40px !important;
}

.sidebar-condition-important {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 0.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid #f59e0b;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-bottom: 1rem;
}

.sidebar-condition-important i {
  color: #f59e0b;
  font-size: 2rem;
  align-self: center !important;
}

.sidebar-condition-important h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #92400e;
}

.sidebar-condition-important p {
  color: #92400e;
  line-height: 1;
  margin: 0;
}

.sidebar-condition-important p a {
  color: var(--heatwavehaze);
}

/* ------------------------------------ QUOTE PAGE DONE  ------------------------------------ */

/* ------------------------------------ CONTACT PAGE START  ------------------------------------ */
.contact-section-v2 {
  background-color: var(--dividerwhite);
}

.contact-page-v2 {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0 10px 0 10px;
}

.contact-section-v2 .contactpage-form-v2 {
  content: " ";
  display: block;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.contactpage-form-v2
  .elementor-field-group
  .elementor-field:not(.elementor-select-wrapper) {
  border-color: #e5e7eb;
}

.contactpage-form-v2 label {
  font-size: 1rem;
  color: black;
  padding-bottom: 0.5rem !important;
}

.sidebar-contact {
  padding: 40px 30px;
  padding-top: 0;
  width: 390px !important;
  box-sizing: border-box !important;
  background: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: fit-content !important;
  z-index: 1 !important;
}

.contact-methods {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background: var(--dividerwhite);
  transition: var(--transitionSIDEBAR);
}

.contact-method:hover {
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.05),
    rgba(93, 176, 255, 0.05)
  );
}

.contact-icon {
  vertical-align: center;
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  flex-shrink: 0 !important;
}

.contact-method h4 {
  margin-top: 0px !important;
  margin-bottom: 8px !important;
}

.contact-method p {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.contact-trust-indicators {
  display: flex !important;
  flex-direction: column !important;
  row-gap: 10px;
}

.contact-trust-indicators > h4 {
  font-size: 1.3rem !important;
}

.contact-trust-indicators h4:before {
  content: "";
  display: block;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.contact-trust-item {
  display: flex !important;
  flex-direction: row;
  gap: 10px;
  row-gap: 10px !important;
}

.contact-trust-item i {
  vertical-align: center;
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0 !important;
}

.contact-trust-indicators span {
  font-size: 1.2rem;
}

.warranty-conditions {
  z-index: 5;
  margin-left: -30px !important;
  margin-right: -30px !important;
  margin-bottom: -40px !important;
}

.contact-condition-important {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 0.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid #f59e0b;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-bottom: 1rem;
}

.contact-condition-important i {
  color: #f59e0b;
  font-size: 2rem;
  align-self: center !important;
}

.contact-condition-important h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #92400e;
}

.contact-condition-important p {
  color: #92400e;
  line-height: 1;
  margin: 0;
}

.contact-condition-important p a {
  color: var(--heatwavehaze);
}

.quote-c2a {
  background: linear-gradient(
    135deg,
    var(--oxfordblue) 0%,
    var(--regalblue) 100%
  );

  padding-bottom: 2rem;
}

.quote-c2a .section-title {
  color: white;
  font-weight: 800;
  font-size: 3.5rem;
}

.quote-c2a .section-intro {
  color: white;
  font-size: 1.1rem;
}

.quote-c2a .btn.btn-secondary.contactpage span {
  font-size: 1.5rem !important;
}

/* ------------------------------------ CONTACT PAGE DONE  ------------------------------------ */

/* ------------------------------------ ABOUT PAGE  START  ------------------------------------ */
.aboutus-summary-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center !important;
  max-width: 1380px;
  justify-self: center;
}

/* Left */
.aboutus-summary-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--gray-medium);
}

.aboutus-summary-text .aboutus-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-dark);
}

.aboutus-summary-highlights {
  margin-top: 2rem;
}

.aboutus-highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(30, 144, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--regalblue);
}

.aboutus-highlight-item i {
  color: var(--dodgerdark);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Right side */
.aboutus-summary-visual {
  position: relative;
}

.aboutus-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.aboutus-visual-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.aboutus-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
}

.aboutus-visual-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dodgerblue);
}

.growth-timeline {
  padding-bottom: 1rem;
  margin-bottom: 1.35rem;
}

.growth-timeline-container {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.growth-timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--dodgerblue-dark);
  z-index: 0;
}

/* MOBILE STACK */
.timeline-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.milestone-content,
.milestone-year {
  background: white;
  padding: 1.3rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.milestone-year {
  background: var(--dodgerblue-dark);
  color: white;
  font-weight: bold;
  border-radius: 50px;
  min-width: 80px;
  text-align: center;
  align-self: center;
  margin: 1rem 0;
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.milestone-metrics {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.metric {
  background: rgba(30, 144, 255, 0.1);
  color: var(--dodgerblue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.milestone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--dodgerdark-regal);
  color: white;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* working zone */
/* original */
/* .milestone-test {
  background: white;
  box-shadow: var(--shadow-xl);
  border-radius: var(--border-test-radius-lg);


}

.milestone-test img {
  border-radius: var(--border-test-radius-lg);
  display: flex;
  justify-self: center;
} */
/* original end */
.milestone-test {
  background: white;
  box-shadow: var(--shadow-xl);
  border-radius: var(--border-test-radius-lg);

  width: 618px; /* default width */
  height: 383px; /* default height */

  max-width: 620px;
  max-height: 385px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.milestone-test img {
  border-radius: var(--border-test-radius-lg);
  width: 100%;
  height: 100%;
  object-fit: contain; /* ensures no cropping */
  display: block;
}

/* working zone end */

/* DESKTOP: ALTERNATING GRID */
@media (min-width: 768px) {
  .timeline-milestone {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    text-align: initial;
    margin-bottom: 2.5rem;
  }

  /* Odd: Content left, Year right */
  .timeline-milestone:nth-child(odd) .milestone-content {
    grid-column: 1 / 2;
    grid-row: 1;
    justify-self: end;
    text-align: left;
    margin-right: 1rem;
  }

  .timeline-milestone:nth-child(odd) .milestone-year {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: center;
    align-self: center;
  }

  /* Even: Content right, Year left */
  .timeline-milestone:nth-child(even) .milestone-content {
    grid-column: 3 / 4;
    grid-row: 1;
    justify-self: start;
    text-align: left;
    margin-left: 1rem;
  }

  .timeline-milestone:nth-child(even) .milestone-year {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: center;
    align-self: center;
  }

  /*OPTIONAL -- BC OF SPACE ADDED NOW - IMAGE CONTIANER*/
  .timeline-milestone:nth-child(odd) .milestone-test {
    grid-column: 3 / 4;
    grid-row: 1;
    margin-left: 1rem;
  }

  .timeline-milestone:nth-child(even) .milestone-test {
    grid-column: 1 / 2;
    grid-row: 1;
    margin-right: 1rem;
    align-self: center;
  }

  /*OPTIONAL --  --  --  --  --  --  --  --  --  --  --  -- LAST CONTAINER/CURRENT*/

  /*full card*/
  .timeline-milestone.lastmilestone:last-child {
    display: grid;
    grid-template-columns: 1fr 120px 1fr !important;
    border-radius: var(--border-test-radius-lg);
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    transform: translateY(50px);
    transition: all 0.8s ease;
    z-index: 1 !important;
    position: relative;
    box-shadow: var(--shadow-xl);
  }

  /*icon/text/tags*/
  .timeline-milestone:last-child .milestone-content {
    background: red;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(30, 144, 255, 0.1);
    grid-column: 1 / 4;
    margin-right: 0;
  }

  /*year*/
  .timeline-milestone:last-child .milestone-year {
    position: absolute;
    z-index: 10 !important;
    top: 0;
    right: 0;
    left: 0;
    grid-column-start: 2 !important;
    grid-column-end: 3 !important;
    min-width: unset !important;
    overflow: visible;
    padding: 1.1rem 2.3rem;
    background: var(--dodgerdark-regal);
  }

  .timeline-milestone:last-child .milestone-content .milestone-icon {
    background: var(--dodgerblue-dark);
  }

  /*img card*/
  .timeline-milestone:last-child .milestone-test {
    background: yellow;
    display: none;
  }

  /*img */
  .timeline-milestone:last-child .milestone-test img {
    max-width: 100px;
    height: 500;
    display: none;
  }
}

.staffteam {
  background: var(--dividerblue);
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

.team-card-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1380px;
  justify-self: center;
}

.team-card-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-card {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 375px;
}

.row1 .team-card {
  /*flex: 1 1 400px;*/
  max-width: 375px;
}

.row2 .team-card {
  /*flex: 1 1 160px;*/
  width: 315px;
}

.row3 .team-card {
  /*flex: 1 1 140px;*/
  width: 275px;
}

.team-card:hover {
  transform: scale(1.01);
}

.team-card-fullname {
  color: var(--regalblue);
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.team-card-position {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dodgerblue);
}

.team-card-description {
  font-size: 1rem;
  color: var(--gray-medium);
}

.about-commit {
}

.commit-wrapper {
  max-width: 1380px;
  display: flex;
  flex-direction: row;
  justify-self: center;
  gap: 1rem;
  width: 1380px;
  justify-content: center;
  padding: 0.5rem 0.8rem;
}

.commit-card {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  justify-self: center;
  text-align: center;
  border-radius: var(--border-test-radius-lg);
}

.commit-img {
  max-height: 250px;
  max-width: 250px;
  border-radius: var(--border-test-radius-lg);
  width: 250px;
  height: 250px;
  display: flex;
}

.commit-img img {
  /* margin: auto !important; */
  object-fit: contain;
}

/* ------------------------------------ ABOUT PAGE  DONE  ------------------------------------ */

/* ------------------------------------ REUSEABLE COMPONENTS START ------------------------------------ */
/* ---------------PAGE HEADER HERO ---------------*/
.page-header {
  padding: 80px 0 60px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  z-index: 2;
  max-height: 370px;
  justify-content: center !important;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  z-index: 1;
  background: linear-gradient(
    135deg,
    var(--dodgerdark) 30%,
    var(--regalblue) 100%
  );
}

.breadcrumb-mockup {
  position: relative;
  z-index: 10 !important;
  color: white;
}

.page-banner-title {
  position: relative;
  font-size: 3.5rem;
  color: white;
  z-index: 10;
  margin-bottom: 20px;
}

.page-banner-descrip {
  position: relative;
  font-size: 1.2rem;
  z-index: 10;
  color: var(--white);
  max-width: 680px;
}

/* --------------- darkblue-C2A ---------------*/
.darkblue-c2a {
  background: linear-gradient(
    135deg,
    var(--oxfordblue) 0%,
    var(--regalblue) 100%
  );

  padding-bottom: 2rem;
}

.darkblue-c2a .section-title {
  color: white;
  font-weight: 800;
  font-size: 3.5rem;
}

.darkblue-c2a .section-intro {
  color: white;
  font-size: 1.1rem;
}

.darkblue-c2a .btn.btn-secondary.darkblue span {
  font-size: 1.5rem !important;
}

/*---------------PAGE HEADER HEADER ---------------*/
.model-page-header {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  justify-content: center !important;
  background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
}

.model-page-header::before {
  content: "";
  position: absolute;
  opacity: 0.9;
  background: linear-gradient(
    135deg,
    var(--dodgerdark) 30%,
    var(--regalblue) 100%
  );
}

.model-page-header .e-con-inner {
  max-width: 1380px !important;
}

.model-breadcrumb-mockup {
  position: relative;
  color: white;
}

.model-page-banner-title {
  text-wrap: nowrap !important;
  position: relative;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
}

.model-page-banner-descrip {
  position: relative;
  font-size: 1.2rem;
  color: var(--white);
  max-width: 680px;
}

.model-page-header-left .e-con-inner {
  column-gap: 10px !important;
}

.model-page-header-left * {
  z-index: 50 !important;
}

.model-page-header-right {
  justify-content: center !important;
  z-index: 10 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.model-page-header-right .e-con-inner {
  justify-content: center !important;
  padding-bottom: 0;
  padding-top: 0;
}

.model-page-header-image img {
  width: 65% !important;
  max-height: 380px !important;
  object-fit: contain !important;
}

.model-page-header-image {
  display: grid;
  flex-direction: column;
  justify-items: center;
}

.model-indicator {
  bottom: -10px;
  left: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
}

.hero-specs {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.hero-spec-item {
  text-align: center;
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: column !important;
}

.hero-spec-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.hero-spec-unit {
  display: block !important;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
  color: var(--white) !important;
}

/* --------------- OLD VS NEW SLIDER --------------- */
/* --------------- ORIGINAL CSS -- POT FIX UNDERNEATH --------------- */
/* .old-v-new-section {
  margin: 20px 0 20px;
}

.image-comparison-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 25px 0 25px;
  box-sizing: content-box;
}

.image-comparison-container img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.image-comparison-container .after-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}

.image-comparison-container .after-image img {
  width: 200%;
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  user-select: none;
}

.image-comparison-container .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
  z-index: 2;
  pointer-events: none;
}

.image-comparison-container .slider-handle::before,
.image-comparison-container .slider-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  pointer-events: none;
}

.image-comparison-container .slider-handle::before {
  left: -6px;
  content: "◀";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #555;
}

.image-comparison-container .slider-handle::after {
  right: -6px;
  content: "▶";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #555;
}

.image-comparison-container .label {
  position: absolute;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 14px;
  border-radius: 3px;
  z-index: 1;
  pointer-events: none;
}

.image-comparison-container .label.before {
  top: 10px;
  left: 10px;
}

.image-comparison-container .label.after {
  top: 10px;
  right: 21px;
} */
/* --------------- ORIGINAL CSS -- ABOVE --------------- */
/* --------------- OLD VS NEW SLIDER POT FIX BELOW  --------------- */
/* --------------- OLD VS NEW SLIDER (IMPROVED) --------------- */
.old-v-new-section {
  margin: 20px 0 20px;
}

.image-comparison-container {
  position: relative;
  width: 100%;
  /* width: 55%; */
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 25px 0 25px;
  box-sizing: content-box;
  /* // */
  height: 650px;
}

.image-comparison-container img {
  /* position: absolute;
  display: block; */
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  /* // */
}

.image-comparison-container .after-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
  /* // */
  display: flex;
  justify-content: center;
}

.image-comparison-container .after-image img {
  width: 200%;
  max-width: none;
  /* position: absolute; */
  left: 0;
  top: 0;
  pointer-events: none;
  user-select: none;
}

.image-comparison-container .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 2px;
  cursor: pointer;
  z-index: 2;
  pointer-events: none;
}

.image-comparison-container .slider-handle::before,
.image-comparison-container .slider-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  pointer-events: none;
}

.image-comparison-container .slider-handle::before {
  left: -6px;
  content: "◀";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #555;
}

.image-comparison-container .slider-handle::after {
  right: -6px;
  content: "▶";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #555;
}

.image-comparison-container .label {
  position: absolute;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 14px;
  border-radius: 3px;
  z-index: 1;
  pointer-events: none;
}

.image-comparison-container .label.before {
  top: 10px;
  left: 10px;
}

.image-comparison-container .label.after {
  top: 10px;
  right: 21px;
}

/* --------------- OLD VS NEW SLIDER POT FIX ABOVE--------------- */

/* Why Choose Inner Components -- CARD STYLE (Also can be a Component) */
.why-inner-section {
  background: var(--dividerwhite);
  padding-top: 30px;
  padding-bottom: 30px;
}

.why-inner-grid {
  width: 1380px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-self: center;
}

.why-inner-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px 0 rgb(0 0 0 / 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-around !important;
}

.why-inner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dodgerblue), var(--dodgerdark));
}

.why-inner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px 0 rgb(0 0 0 / 0.2);
  border-color: var(--dodgerblue);
}

.why-inner-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--dodgerblue), var(--dodgerdark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-inner-icon i {
  font-size: 2rem;
  color: var(--white);
}

.why-inner-card h4 {
  margin-bottom: 1rem;
  color: var(--dodgerdark);
  font-family: "Montserrat", sans-serif;
}

.why-inner-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.why-inner-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.why-inner-metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dodgerblue);
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

.why-inner-metric-label {
  font-size: 0.9rem;
  color: var(--gray-medium);
  font-weight: 500;
}

/* Product Benefits/Showcase with Overlay info */
/* Grid Showcase */
.grid-showcase-fcu-benefits.section-fcu-benefits {
  background: var(--dividerwhite);
  padding: 20px 0 20px;
  margin: 20px 0 20px;
}

.components-grid-fcu-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 1380px;
  justify-self: center;
}

.component-card-fcu-benefits {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px 0 rgb(0 0 0 / 0.15);
  height: 350px;
}

.component-card-fcu-benefits.featured-fcu-benefits {
  grid-column: span 2;
  height: 400px;
}

.component-card-fcu-benefits:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px 0 rgb(0 0 0 / 0.25);
}

.card-image-fcu-benefits {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-image-fcu-benefits img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.component-card-fcu-benefits:hover .card-image-fcu-benefits img {
  transform: scale(1.1);
}

.card-overlay-fcu-benefits {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.9) 0%,
    rgba(0, 78, 132, 0.95) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 2rem;
}

.component-card-fcu-benefits:hover .card-overlay-fcu-benefits {
  opacity: 1;
}

.overlay-content-fcu-benefits {
  text-align: center;
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.component-card-fcu-benefits:hover .overlay-content-fcu-benefits {
  transform: translateY(0);
}

.overlay-content-fcu-benefits i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--white);
}

.overlay-content-fcu-benefits h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.overlay-content-fcu-benefits p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.5;
}

.explore-btn-fcu-benefits {
  background: var(--white);
  color: var(--dodgerdark);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.explore-btn-fcu-benefits:hover {
  background: var(--heatwavehaze);
  color: var(--white);
  transform: scale(1.05);
}

/* Detail Modal */
.detail-modal-fcu-benefits {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal-content-fcu-benefits {
  background: var(--white);
  margin: 2% auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal-fcu-benefits {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--gray-dark);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
}

.close-modal-fcu-benefits:hover {
  color: var(--heatwavehaze);
  transform: scale(1.1);
}

.modal-body-fcu-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.modal-image-fcu-benefits {
  background: var(--dividerwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-image-fcu-benefits img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 15px;
}

.modal-info-fcu-benefits {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info-fcu-benefits h2 {
  color: var(--dodgerdark);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.modal-tags-fcu-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.modal-info-fcu-benefits p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--gray-dark);
}

.modal-benefits-fcu-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-benefit-fcu-benefits {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dividerwhite);
  border-radius: 10px;
  border-left: 4px solid var(--dodgerblue);
}

.modal-benefit-fcu-benefits i {
  color: var(--dodgerblue);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.modal-benefit-fcu-benefits span {
  font-weight: 500;
  color: var(--gray-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .component-card-fcu-benefits.featured-fcu-benefits {
    grid-column: span 1;
    height: 350px;
  }

  .modal-body-fcu-benefits {
    grid-template-columns: 1fr;
  }

  .modal-image-fcu-benefits {
    order: -1;
  }
}

@media (max-width: 768px) {
  .components-grid-fcu-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .component-card-fcu-benefits {
    height: 300px;
  }

  .hero-content-fcu-benefits h1 {
    font-size: 2.5rem;
  }

  .modal-content-fcu-benefits {
    width: 95%;
    margin: 5% auto;
  }

  .modal-info-fcu-benefits {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .overlay-content-fcu-benefits {
    padding: 1rem;
  }

  .overlay-content-fcu-benefits h3 {
    font-size: 1.2rem;
  }

  .overlay-content-fcu-benefits p {
    font-size: 0.9rem;
  }

  .modal-info-fcu-benefits {
    padding: 1.5rem;
  }

  .modal-info-fcu-benefits h2 {
    font-size: 1.5rem;
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Grid entrance animations */
.component-card-fcu-benefits {
  animation: slideInUp 0.6s ease forwards;
}

.component-card-fcu-benefits:nth-child(1) {
  animation-delay: 0.1s;
}

.component-card-fcu-benefits:nth-child(2) {
  animation-delay: 0.2s;
}

.component-card-fcu-benefits:nth-child(3) {
  animation-delay: 0.3s;
}

.component-card-fcu-benefits:nth-child(4) {
  animation-delay: 0.4s;
}

.component-card-fcu-benefits:nth-child(5) {
  animation-delay: 0.5s;
}

.component-card-fcu-benefits:nth-child(6) {
  animation-delay: 0.6s;
}

.component-card-fcu-benefits:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hubspot Form Integration  */
/* Contact Us Page */
.contactpage-hubspot-form .hs-form-html * {
  font-family: unset !important;
  font-size: unset !important;
}

.contactpage-hubspot-form .hs-form-html input {
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}

.contactpage-hubspot-form .hs-form-html textarea {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.contactpage-hubspot-form
  .hs-form-html
  li.hsfc-DropdownOptions__List__ListItem {
  background-color: white !important;
}

.contactpage-hubspot-form .hs-form-html .hsfc-DropdownField li:hover {
  background: var(--dodgerblue) !important;
  color: white !important;
  filter: brightness(1) !important;
}

.contactpage-hubspot-form
  .hs-form-html
  .hsfc-DropdownOptions
  .hsfc-DropdownOptions__Search {
  background: white !important;
}

.contactpage-hubspot-form .hs-form-html * {
  transition: none !important;
  transform: none !important;
}

.contactpage-hubspot-form .hsfc-NavigationRow__Buttons {
  display: flex !important;
  justify-items: center !important;
  justify-content: center !important;
}

.contactpage-hubspot-form button[type="submit"] {
  display: inline-block !important;
  padding: 15px 30px;
  border: none;
  border-radius: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  background-color: var(--dodgerdark) !important;
  color: var(--white) !important;
  width: 75% !important;
  align-self: center !important;
  align-content: center !important;
  justify-content: center !important;
  justify-self: center !important;
  justify-items: center !important;
}

.contactpage-hubspot-form button[type="submit"]:hover {
  background-color: var(--dodgerblue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px 0 rgb(0 0 0 / 0.3) !important;
}

/* Hubspot finance form */
.c2a-finance .contactpage-hubspot-form button[type="submit"] {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.2);
  background-color: var(--dodgerdark) !important;
  color: var(--white) !important;
  width: 75% !important;
}
.c2a-finance .contactpage-hubspot-form button[type="submit"]:hover {
  background-color: var(--dodgerblue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px 0 rgb(0 0 0 / 0.3) !important;
}

/* Mobile CSS */
/* changing this to 470px from 768*/
@media only screen and (max-width: 430px) {
  /* home page  mobile*/

  html,
  body {
    overflow-x: hidden !important;
  }

  .hero-title .elementor-heading-title {
    font-size: 2.4rem !important;
  }
  .hero-content .hero-descrip {
    font-size: 1.3rem;
    width: 80vw !important;
  }

  .hero-bottom {
    display: flex;
    flex-direction: row !important;
    justify-content: space-evenly;
    padding-top: 30px;
    padding-bottom: 75px;
  }

  .hero-bottom .hero-stat {
    width: 36vw;
  }

  /* home page  first section info leading innovation*/

  section.elementor-element-98abd7d {
    padding-top: unset !important;
  }

  .about-grid .about-content .section-title {
    font-size: 2.4rem !important;
    margin-bottom: 20px;
    padding: 0 7px 0;
  }

  .about-grid .about-content .about-text p:nth-child(2) {
    display: none;
  }

  .about-grid .about-content div.about-text {
    padding: 0 15px 0;
  }

  .about-grid .about-content .btn {
    align-self: center !important;
    font-size: 1.2rem !important;
  }

  .about-grid .about-content .btn span {
    font-size: 1.4rem !important;
  }

  .about-grid .about-image {
    object-fit: cover !important;
    padding: 10px;
    border-radius: 10px;
    display: none;
  }

  /* global section title update */

  .section-title {
    font-size: 1.9rem;
  }

  /* proven excellence section mobile */
  .elementor-element-a731988 .section-title {
    font-size: 2.3rem;
    margin-bottom: 28px;
  }

  .highlights-grid {
    display: flex;
    align-content: center;
  }

  .highlights-grid .highlight-card {
    padding: 10px;
    width: 80vw;
  }
  .highlights-grid .highlight-card .highlight-desc {
    font-size: 1.1rem;
  }

  /* eco section */

  .eco-html {
    padding: 0 7px 0;
  }
  .section-title-eco {
    font-size: 2.4rem;
    padding: 0 7px 0;
  }

  .eco-html .eco-grid .e-con-inner {
    column-gap: 2rem;
    gap: 2rem;
  }
  .eco-html .section-intro {
    display: none;
  }

  .eco-html .eco-benefits {
    padding: 0 4px 0;
  }

  .eco-html .eco-benefits .eco-list {
    padding-left: 4px !important;
  }

  .eco-html .eco-benefits li {
    padding: 2px;
    font-size: 1.2rem;
  }

  /* global .section-intro */
  .section-intro {
    font-size: 1.1rem;
  }

  /* explore our fan coils */
  .elementor-element-aa166e1 {
    padding-top: 10px;
  }

  .product-card-v2 .product-content-v2 {
    padding: 0 10px 0;
    display: flex;
    flex-direction: column;
    align-self: center;
    align-object: center;
    text-align: center;
  }

  .product-card-v2 .product-content-v2 .product-features {
    display: none;
  }

  /* Financing section */

  .financing-banner h2 {
    font-size: 2.4rem !important;
  }
  .financing-banner span {
    font-size: 1.2rem;
  }
  .financing-banner p {
    margin: 0;
  }

  /* retrofit section */

  .retrofit-section-home * {
    max-width: 100vw !important;
  }
  .intro-grid-retrofit {
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }

  .intro-content-retrofit .intro-highlights-retrofit {
    padding: 0 7px 0;
  }

  /* application seo section */

  .application-section .section-title {
    font-size: 2.8rem;
  }

  .application-section .section-intro {
    font-size: 1.3rem;
  }
  .applications-wrapper {
    padding: 0 7px 0;
  }
  .applications-wrapper .application-card {
    border-radius: 7px;
  }

  .applications-wrapper .application-card .application-title {
    font-size: 1.7rem;
  }
  .applications-wrapper .application-card p {
    font-size: 1.2rem;
  }

  /* header */

  header .header-parent {
    display: flex;
    flex-direction: row;
    max-width: 100vw !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
  }
  /* left=logo */
  header .header-parent .left-parent {
    min-width: 90vw;
    width: 92vw;
    display: flex;
    justify-content: center;
    z-index: 25;
  }
  /* right = menu */
  header .header-parent .right-parent {
    /* background-color: red; */
    /* right: 0px;
    position: absolute; */
    z-index: 5;
  }

  header .icon-signoff {
    display: none;
  }

  header .holder-fcu {
    border-radius: 0;
  }
  header .icon-signoff {
    border-radius: 0;
  }
  header .drop-parent {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  /* Our Products page */

  /* page banner */
  .page-header {
    padding: 0px;
  }
  .page-header .page-banner-title {
    font-size: 2.5rem;
    padding-left: 1rem;
  }
  .page-header .page-banner-descrip {
    display: none;
  }

  /* retro section */
  .elementor-element.elementor-element-e21895e.elementor-widget.elementor-widget-html {
    align-self: center;
  }

  .retrofit-right .retrofit-img {
    width: 35vw;
  }

  .elementor-element.elementor-element-1ddd862.elementor-widget.elementor-widget-html {
    display: none;
  }

  /* Tab section */

  .container .advtab {
  }
  .advtab {
    width: unset;
  }
  .advantage-tabs-bar {
    align-self: center;
    flex-direction: column;
  }
  .tab-img-container {
    width: unset;
    height: unset;
  }
  .tabinside {
    flex-direction: column;
  }
  .tab-img-container img {
    width: unset;
    height: unset;
  }

  /* Risks of Outdated Systems */
  .danger-card {
    margin: auto !important;
  }
  .danger-card > div {
    width: 80vw;
  }

  /* Fan Coil Category PAGE template */
  .model-page-banner-title {
    font-size: 2rem;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }
  .model-page-banner-descrip {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
    font-size: 1rem;
  }

  .model-page-header-left .hero-specs {
    display: none;
  }

  .why-inner-grid {
    display: flex;
    flex-direction: column;
    width: unset;
  }

  .darkblue-c2a h2.section-title {
    font-size: 3rem;
  }

  /* Contact Us / Get a Quote*/

  .hsfc-Step__Content {
    padding: 40px 0 40px !important;
  }

  .sidebar-contact {
    display: flex;
    flex-direction: column !important;
    align-content: center !important;
    align-self: center !important;
    margin: 0 auto !important;
    padding: 0 0 40px !important;
  }

  /* About us page */
  .aboutus-summary-grid {
    max-width: unset !important;
    display: unset !important;
  }
  .aboutus-summary-content {
    padding: 0 12px 0;
  }

  .aboutus-summary-text > *:not(:first-child) {
    display: none;
  }

  .aboutus-visual-card {
    padding: 12px;
  }
  .aboutus-visual-card img {
    border-radius: 12px;
  }

  .milestone-test {
    width: unset;
    height: unset;
    max-height: unset;
    max-width: unset;
  }

  .team-card {
    display: flex;
    flex-direction: column;
    /* justify-content: space-around !important; */
  }

  .team-card-row.row2 {
    flex-wrap: wrap;
    width: unset !important;
    height: unset !important;
    column-gap: 0.8rem;
  }

  .row2 .team-card {
    width: 30vw;
    padding: 8px;
  }
  .row2 .team-card .team-card-position {
    font-size: 0.75rem;
  }
  .row2 .team-card .team-card-fullname {
    font-size: 0.9rem;
  }
  /* row3 */
  .team-card-row.row3 {
    flex-wrap: wrap;
    width: unset !important;
    height: unset !important;
    column-gap: 0.8rem;
  }

  .row3 .team-card {
    width: 30vw;
    padding: 8px;
  }
  .row3 .team-card .team-card-position {
    font-size: 0.8rem;
  }
  .row3 .team-card .team-card-position {
    font-size: 0.75rem;
  }
  .row3 .team-card .team-card-fullname {
    font-size: 0.9rem;
  }

  /* about us commitments  */
  .about-commit {
  }

  .about-commit .commit-wrapper {
    display: flex;
    justify-self: center;
    margin: auto !important;
    align-items: center;
    flex-direction: column;
  }

  .about-commit .commit-wrapper {
    max-width: unset;
    width: unset;
  }

  /* Finance page mobile */
  /* first section */
  .finance-trust-grid {
    grid-template-columns: unset;
  }
  .finance-trust-image {
    padding: 1rem;
  }

  /* second section */
  .finance-retrofit-content {
    padding-right: unset;
  }

  .finance-retrofit-grid {
    grid-template-columns: unset;
    padding: 1rem;
  }
  /* finance retrofit */
  .finance-retrofit-cta {
    justify-self: center;
  }

  /* contact section */
  .c2a-finance .contactpage-hubspot-form button[type="submit"] {
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-size: 14px !important;
  }
  [data-hsfc-id="Renderer"] .hsfc-Step .hsfc-Step__Content {
    padding: 0.8rem !important;
  }

  /* warranty page mobile */

  .warranty-detail-card {
    width: 95vw;
    justify-self: center;
  }

  .warranty-detail-card .warranty-period strong {
    font-size: 2rem;
  }

  .warranty-detail-card .warranty-period .period-number {
    font-size: 4rem;
  }
  .warranty-conditions .condition-important {
    width: 100vw;
    margin-left: 31px;
    align-items: center;
  }
  .warranty-validity,
  .warranty-exclusions {
    width: 95vw !important;
  }
  .checklist-grid {
    display: flex;
    flex-direction: column;
    width: 95vw !important;
  }
  .checklist-intro {
    width: 95vw;
  }
  .checklist-item {
    flex-direction: column;
  }
  .maintenance-benefits {
    display: flex;
    flex-direction: column;
    width: 95vw !important;
  }
  .terms-content {
    /* width: unset;
    display: unset;
    width: 95vw !important; */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .warranty-terms .terms-section {
    width: 90vw;
  }

  /* PRODUCTS TYPE PAGE MOBILE */
  .model-page-banner-descrip {
    display: none;
  }
  .model-indicator {
    display: none;
  }

  .model-layout-info-holder {
    max-width: 99vw;
    flex-direction: unset;
    width: unset;
    display: unset !important;
  }
  .table-holder {
    width: unset;
  }
  .components-grid-fcu-benefits {
    grid-template-columns: unset;
    gap: 3rem;
    width: 96vw;
  }
  .component-card-fcu-benefits.animate-in-fcu-benefits {
    width: 90vw;
    justify-self: center;
  }

  .model-page-header-image img {
    display: none;
  }
  /* Hide Tables on mobile */
  .fcu-quick-nav {
    display: none;
  }
  .model-actions .btn-fix.btn-primary-fix {
    display: none;
  }
  .section-specification {
    display: none;
  }
}
