.image-carousel-section {
    background: #f8fafc;
}
.image-carousel-swiper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(60,72,88,0.08);
}
.image-carousel-swiper .swiper-slide {
    transition: transform 0.6s cubic-bezier(.4,2,.6,1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-carousel-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(60,72,88,0.10);
    transition: box-shadow 0.3s;
}
.image-carousel-swiper .swiper-slide-active img {
    box-shadow: 0 8px 32px rgba(60,72,88,0.18);
    transform: scale(1.04);
}
.image-carousel-swiper .swiper-pagination-bullet {
    background: #0d6efd;
    opacity: 0.7;
}
.image-carousel-swiper .swiper-pagination-bullet-active {
    background: #0d6efd;
    opacity: 1;
}
.image-carousel-swiper .swiper-button-next,
.image-carousel-swiper .swiper-button-prev {
    color: #0d6efd;
    transition: color 0.2s;
}
.image-carousel-swiper .swiper-button-next:hover,
.image-carousel-swiper .swiper-button-prev:hover {
    color: #0a58ca;
}
.news-ticker {
  width: 100%;
  background: #d60000;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-weight: bold;
}

.ticker-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
:root {
  --daikin-blue: #00A0E9;
  --daikin-light: #F4F9FD;
  --border-light: #E3EDF6;
  --text-dark: #1F2933;
}

/* Title */
.daikin-title {
  color: var(--daikin-blue);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Table Container */
/* Table Container */
.spec-table-daikin {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

/* Grid Row */
.spec-table-daikin .spec-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-bottom: 1px solid var(--border-light);
}

.spec-table-daikin .spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  background: var(--daikin-light);
  padding: 14px 16px;
  font-weight: 600;
  color: var(--daikin-blue);
}

.spec-value {
  padding: 14px 16px;
  color: var(--text-dark);
}

/* Mobile stacked */
@media (max-width: 576px) {
  .spec-table-daikin .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-label {
    border-bottom: 1px solid var(--border-light);
  }
}

.daikin-product-section {
  background: linear-gradient(135deg, #003a8f, #005cb9);
  color: #ffffff;
}

.product-image-wrapper {
  background: radial-gradient(circle, #0a4fa3, #002d6b);
  padding: 40px;
  border-radius: 12px;
}

.product-img {
  max-height: 280px;
}

.product-title {
  color: #00b0f0;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-subtitle {
  color: #ffffff;
  font-weight: 500;
}

.spec-box {
  background: #ffffff;
  color: #333;
  border-radius: 10px;
  padding: 16px;
}

.spec-box .spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eaeaea;
}

.spec-box .spec-row:last-child {
  border-bottom: none;
}

.stars {
  color: #00b0f0;
  font-size: 18px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #e6f4ff;
}

/* Modern Popup Ad Styles */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease-out;
}

.popup-content {
    background: #fff;
    border-radius: 16px;
    max-width: 350px;
    width: 90%;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(60, 72, 88, 0.18);
    position: relative;
    text-align: center;
    transform: scale(0.9);
    animation: popScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.popup-close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close-btn:hover {
    color: #333;
}

.popup-image {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.popup-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #333;
}

.popup-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.5;
}

.popup-cta {
    padding: 0.6rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popScale {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Footer Brand Column Responsiveness */
.footer-brand-col {
    padding-left: 80px;
}

@media (max-width: 992px) {
    .footer-brand-col {
        padding-left: 15px; /* Standard bootstrap col padding */
    }
}

/* Modern Glass Header */
.scrolled .modern-glass-header {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}
