/* Banner Bottom CTA */
.banner-bottom {
    padding: 40px 0;
    background-color: var(--light-gray);
}

.banner-bottom .box {
    padding: 40px;
    color: var(--white);
    border-radius: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bg-blue {
    background-color: var(--primary-blue);
}

.bg-green {
    background-color: var(--dark-gray);
}

.banner-bottom .box h5 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-bottom .box p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* How Can We Help Section */
.how-can-we-help {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.b-heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.heading span {
    color: var(--light-blue);
    font-weight: bold;
}

.bline {
    width: 80px;
    height: 4px;
    margin: 0 auto 30px;
}

.bg-blue.bline {
    background-color: var(--light-blue);
}

.bg-white.bline {
    background-color: var(--white);
}

.service {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.service:hover {
    transform: translateY(-5px);
}

.service img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service .content {
    padding: 30px;
    text-align: center;
}

.service .content img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service button {
    background: none;
    border: none;
    width: 100%;
    text-align: center;
    padding: 0;
    cursor: pointer;
}

.service h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.service p {
    color: #666;
    font-size: 16px;
}

/* Inner Banner Section */
.inner-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(55, 65, 81, 0.7);
}

.inner-banner .container {
    position: relative;
    z-index: 1;
}

.inner-banner h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.bg-bbg {
    background-color: var(--light-gray);
}

.services .box {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}

.services .row > div:nth-child(n+5) .box {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .services .row > div:nth-child(5) .box,
    .services .row > div:nth-child(6) .box,
    .services .row > div:nth-child(7) .box,
    .services .row > div:nth-child(8) .box {
        margin-top: 30px;
    }
    
    .services .row > div:nth-child(9) .box,
    .services .row > div:nth-child(10) .box,
    .services .row > div:nth-child(11) .box,
    .services .row > div:nth-child(12) .box {
        margin-top: 30px;
    }
}

.services .box:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.services .box h6 {
    font-size: 20px;
    font-weight: bold;
    color: var(--light-blue);
    margin-bottom: 15px;
    text-align: center;
}

.services .box p {
    text-align: center;
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.6;
}

.para {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.faq.bg-white {
    padding: 80px 0;
    background-color: var(--white);
}

.faq.bg-white .heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.faq.bg-white .bline {
    width: 80px;
    height: 4px;
    background-color: var(--light-blue);
    margin-bottom: 8px;
}

.faq.bg-white .bline:first-of-type {
    margin-bottom: 8px;
}

.faq.bg-white .bline:last-of-type {
    margin-bottom: 20px;
}

.faq.bg-white .para {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Buy Today Section */
.buy-today {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.buy-today .img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-today .img > img {
    width: 100%;
    border-radius: 10px;
}

.buy-today .family {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    z-index: 3;
    overflow: visible;
}

.buy-today .family::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--yellow);
    border: 3px solid rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.buy-today .family img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
}

.bg-lblue {
    background-color: var(--light-blue);
}

/* Your Home Section */
.your-home {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.your-home.bg-green .box {
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.your-home.bg-green .box:hover {
    transform: translateY(-5px);
}

.your-home.bg-green .box img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.your-home.bg-green .box h6 {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.your-home .heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-white-template {
    color: var(--white);
}

.your-home .img {
    position: relative;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.faq .bline {
    margin: 0 0 30px;
}

.faq .col-lg-6.order-lg-2 {
    padding: 0 !important;
    margin: -80px -15px;
    padding: 80px 15px !important;
    overflow: hidden;
}

.faq .col-lg-6.order-lg-2 img {
    width: calc(100% + 30px);
    height: auto;
    object-fit: cover;
    min-height: 600px;
    margin: 0 -15px;
    display: block;
}


.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: var(--white);
}

.accordion-button {
    background-color: var(--white);
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 18px;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--primary-blue);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Our Location Section */
.our-location {
    padding: 80px 0;
    background-color: var(--white);
}

.our-location.py-5 {
    background-color: var(--white);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,100" stroke="rgba(0,0,0,0.05)" stroke-width="1"/></svg>');
    background-size: 50px 50px;
}

.our-location .content {
    width: 100%;
}



.our-location .detail h6 {
    font-size: 18px;
    font-weight: 900;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

.our-location .detail h6.text-cblack {
    color: #000 !important;
    font-weight: 900;
}

.our-location .img iframe {
    border-radius: 10px;
}

.our-location .img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.our-location .detail a {
    color: var(--dark-gray);
    font-size: 18px;
    line-height: 1.5;
    display: block;
}

.our-location .d-flex {
    margin-bottom: 20px;
    align-items: center;
}

.our-location .location {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    border-radius: 50%;
    margin-top: 0;
    flex-shrink: 0;
}

.our-location .location img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
    padding: 0;
    background: none;
}

/* Brand Section */
.brand {
    padding: 80px 0;
    background-color: var(--white);
}

.brand .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand .swiper-button-next,
.brand .swiper-button-prev {
    color: var(--primary-blue);
}

/* AC Heating Section */
.ac-heating {
    padding: 80px 0;
    background-color: var(--light-blue);
}

.ac-heating .heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ac-heating .text-26 {
    font-size: 26px;
}

/* Contact Form Section */
.bg-light-blue {
    background-color: var(--primary-blue);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    background-size: 50px 50px;
}

.our-location.bg-light-blue {
    padding: 80px 0;
}

.our-location.bg-light-blue .detail h6,
.our-location.bg-light-blue .detail p,
.our-location.bg-light-blue .detail a {
    color: var(--white) !important;
    font-size: 16px !important;
    line-height: 1.4;
}

.our-location.bg-light-blue .detail {
    margin-left: 0;
    padding-left: 0;
}

.our-location.bg-light-blue .detail h6,
.our-location.bg-light-blue .detail p {
    font-weight: bold;
    margin-bottom: 4px;
    margin-left: 0;
    padding-left: 0;
}

.our-location.bg-light-blue .detail a {
    margin-left: 0;
    padding-left: 0;
    display: block;
}

.our-location.bg-light-blue .location {
    width: 44.8px;
    height: 44.8px;
    background-color: rgba(0, 0, 0, 0.35) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    min-width: 44.8px;
    color: #ffffff !important;
}

.our-location.bg-light-blue .location i,
.our-location.bg-light-blue .location svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    font-size: 20px;
}

.our-location.bg-light-blue .d-flex {
    align-items: flex-start;
    margin-bottom: 20px;
}

.form {
    background-color: var(--light-blue);
    padding: 40px;
    border-radius: 15px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background-color: var(--white);
}

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

.form button {
    width: 100%;
}

.form_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.form_modal.active {
    display: flex;
}

.form_modal > div {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #3571C6;
    color: var(--white);
    padding: 60px 0 20px;
}

footer h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

footer .bline2,
footer .bline3 {
    width: 50px;
    height: 2px;
    background-color: #3571C6;
    margin-bottom: 15px;
}

footer .navigation ul {
    flex-direction: column;
    gap: 0 !important;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

footer .navigation ul li {
    margin-bottom: 10px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
}

footer .navigation ul li a {
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
    display: block;
    padding: 0;
    margin: 0;
}

footer .navigation ul li a:hover {
    color: var(--yellow);
}

footer .location {
    width: 44.8px;
    height: 44.8px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44.8px;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
}

footer #footerContactUs .d-flex {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    margin-top: 20px;
}

footer #footerContactUs .detail {
    flex: 1;
    min-width: 0;
    margin-left: 0;
    padding-left: 0;
}

footer .location img.icon {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
}

footer .location i {
    color: #ffffff !important;
    font-size: 24px;
}

footer #footerContactUs .d-flex:first-of-type {
    margin-top: 20px;
}

footer .detail {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
}

footer .detail h6 {
    font-size: 16px !important;
    font-weight: bold;
    margin-bottom: 4px;
    margin-left: 0;
    padding-left: 0;
    color: var(--white) !important;
    line-height: 1.4;
    text-align: left;
}

footer .detail a {
    color: var(--white) !important;
    font-size: 16px !important;
    line-height: 1.4;
    text-decoration: none;
    margin-left: 0;
    padding-left: 0;
    display: block;
}

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

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

footer ul li {
    margin-bottom: 10px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

footer ul li a {
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
    display: block;
    padding: 0;
    margin: 0;
}

footer .detail h6,
footer .detail a {
    font-size: 16px !important;
}

footer ul li a:hover {
    color: var(--yellow);
}

footer .d-flex a {
    margin: 0 10px;
    font-size: 18px;
    color: var(--white);
}

footer .d-flex a:hover {
    color: var(--yellow);
}

.copy {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.copy p {
    color: var(--white);
    font-size: 14px;
    margin: 10px 0;
}

.copy a {
    color: var(--white);
    font-size: 14px;
}

.copy a:hover {
    color: var(--yellow);
}

/* Product Grid Section */
.product-grid {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-grid .item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.product-grid .item:hover {
    transform: translateY(-5px);
}

.product-grid .item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-grid .item .title {
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    color: var(--dark-gray);
    text-align: center;
    margin: 0;
}

.product-grid .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 58, 138, 0.95);
    color: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-grid .item:hover .overlay {
    opacity: 1;
}

.product-grid .item .overlay h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
}

.product-grid .item .overlay p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

/* History Company Section */
.history-company {
    padding: 80px 0;
    background-color: var(--white);
}

.history-company .img {
    margin-bottom: 30px;
}

.history-company .img img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* LG Advantages Section */
.lg-advantage {
    padding: 80px 0;
}

.lg-advantage .box {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 35px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.lg-advantage .box:hover {
    transform: translateY(-5px);
}

.lg-advantage .box img {
    background-color: var(--white);
    width: 76px !important;
    height: 76px !important;
    object-position: center;
    object-fit: contain;
    border-radius: 100%;
    padding: 8px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.lg-advantage .box h6 {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

/* Background Image Section */
.faq[style*="background-image"] {
    padding: 80px 0;
    position: relative;
}

.faq[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.faq[style*="background-image"] .container {
    position: relative;
    z-index: 1;
}

/* FAQ Section Styles */
.faq details {
    margin-bottom: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.faq details:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq details[open] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq details summary {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    color: #3571C6;
    list-style: none;
    padding: 10px 0;
    position: relative;
    padding-right: 30px;
}

.faq details summary::-webkit-details-marker {
    display: none;
}

.faq details summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 24px;
    font-weight: 300;
    color: #3571C6;
    transition: transform 0.3s ease;
}

.faq details[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.faq details p {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    line-height: 1.6;
}

.faq details p a {
    color: #3571C6;
    text-decoration: underline;
}

.faq details p a:hover {
    color: #1e40af;
}

/* A11Y: Heading semantics – keep same look for h3/p that replaced h5/h6 */
.banner-bottom .box h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.services .box h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--light-blue);
  margin-bottom: 15px;
  text-align: center;
}
.buy-today p.disclaimer {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  font-weight: normal;
}
.our-location .detail h3 {
  font-size: 18px;
  font-weight: 900;
  color: #000;
  margin: 0;
  line-height: 1.4;
}
.our-location .detail h3.text-cblack {
  color: #000 !important;
  font-weight: 900;
}
.our-location .detail p {
  font-size: 18px;
  font-weight: 900;
  color: #000;
  margin: 0;
  line-height: 1.4;
}
footer h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
footer .detail p {
  font-size: 16px !important;
  font-weight: bold;
  margin-bottom: 4px;
  margin-left: 0;
  padding-left: 0;
  color: var(--white) !important;
  line-height: 1.4;
  text-align: left;
}
