.banner-content h1{
color: white;    
}

/* Warranty page top banner — change image here */
.page-hero--warranty.hero {
    background-image: url('../images/background/warrenty-banner.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


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

/* Section Styles */
.warranty-section {
    padding: 80px 0;
}

.warranty-section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.warranty-section-title h2 {
    font-size: 2.5rem;
    color: var(--snh-red);
    margin-bottom: 15px;
}

.warranty-intro-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.warranty-intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/background/warrenty-banner.webp');
  background-size: cover;
  background-position: bottom;
}

.warranty-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.warranty-intro-text h2 {
  font-size: 2.8rem;
  color: var(--snh-red);
  margin-bottom: 25px;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.warranty-intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: black;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInRight 0.8s ease-out 0.5s forwards;
}

.warranty-highlight-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffecec 100%);
  border-left: 5px solid var(--snh-red);
  padding: 30px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 30px rgba(var(--snh-red-rgb), 0.1);
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInRight 0.8s ease-out 0.7s forwards;
}

.warranty-highlight-box p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--snh-red);
  margin: 0;
  line-height: 1.6;
}

.warranty-intro-image {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInLeft 0.8s ease-out 0.4s forwards;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.image-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--snh-red-rgb), 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.image-container:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: #f0f0f0;
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .warranty-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .warranty-intro-text h2 {
    font-size: 2.2rem;
  }
  
  .image-container {
    transform: perspective(1000px) rotateY(0deg);
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .warranty-intro-section {
    padding: 60px 0;
  }
  
  .warranty-intro-text h2 {
    font-size: 1.8rem;
  }
  
  .warranty-intro-text p {
    font-size: 1.1rem;
  }
  
  .warranty-highlight-box {
    padding: 20px;
  }
}
.warranty-highlight-box {
    background-color: #fff5f5;
    border-left: 5px solid var(--snh-red);
    padding: 25px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

/* Warranty Includes Section */
.warranty-includes-section {
    background-color: #f9f9f9;
}

.warranty-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.warranty-include-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.warranty-include-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--snh-red);
    transition: width 0.3s ease;
}

.warranty-include-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--snh-red-rgb), 0.1);
}

.warranty-include-card:hover::before {
    width: 10px;
}

.warranty-include-icon {
    font-size: 2.5rem;
    color: var(--snh-red);
    margin-bottom: 20px;
}

.warranty-include-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

/* Levels Section */
.warranty-levels-section {
    background-color: #fff;
}

.warranty-levels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.warranty-level-card {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--snh-red);
}

.warranty-level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--snh-red-rgb), 0.15);
}

.warranty-level-badge {
    display: inline-block;
    background: var(--snh-red);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.warranty-level-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.warranty-features-list {
    text-align: left;
    margin-top: 25px;
    list-style: none;
    padding: 0;
}

.warranty-features-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.warranty-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--snh-red);
    font-weight: bold;
}

/* CTA Section */
.warranty-cta-section {
    background: var(--snh-red);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.warranty-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.warranty-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: whitesmoke;
}

.warranty-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #f0f0f0;
}

.warranty-cta-button {
    display: inline-block;
    background: white;
    color: var(--snh-red);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.warranty-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Warranty Info Section */
.warranty-info-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.warranty-info-block {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--snh-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warranty-info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--snh-red-rgb), 0.1);
}

.warranty-info-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--snh-red);
}

.warranty-info-title i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.warranty-info-title h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.warranty-info-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.warranty-info-content p {
    margin-bottom: 15px;
}

.warranty-info-content strong {
    color: var(--snh-red);
    font-weight: 600;
}

.warranty-highlight {
    background-color: #fff5f5;
    padding: 15px 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 3px solid var(--snh-red);
}

.warranty-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--snh-red), transparent);
    margin: 30px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .warranty-section-title h2 {
        font-size: 2rem;
    }
    
    .warranty-includes-grid,
    .warranty-levels-container {
        grid-template-columns: 1fr;
    }
    
    .warranty-section {
        padding: 60px 0;
    }
    
    .warranty-info-title h3 {
        font-size: 1.5rem;
    }
    
    .warranty-info-content {
        font-size: 1rem;
    }
    
    .warranty-info-block {
        padding: 20px;
    }
    
    .warranty-cta-content h2 {
        font-size: 2rem;
    }
}
/* Add same hover line effect to ALL cards */
.warranty-level-card::before,
.warranty-info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; /* 👈 Slim line from the left */
    width: 5px;
    height: 100%;
    background: var(--snh-red);
    transition: width 0.3s ease;
}

.warranty-level-card:hover::before,
.warranty-info-block:hover::before {
    width: 10px;
}
.warranty-info-block:last-child {
    animation: slideInFromLeft 0.8s ease-out;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Page banner uses .hero / .hero-overlay from style.css (same as part exchange) */

.back-img {
    padding: 200px 0 140px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.back-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--snh-red-rgb), 0.75);
    z-index: 1;
}

.back-img .container {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Optional: Add a breadcrumb */
.banner-content .breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.banner-content .breadcrumb li {
    margin: 0 5px;
    font-size: 0.9rem;
}

.banner-content .breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.banner-content .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.banner-content .breadcrumb a:hover {
    color: #ffcccb;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .warranty-banner.breadcrumb-section,
    .back-img {
        padding: 100px 0 70px;
        background-attachment: scroll;
    }

    .warranty-banner.breadcrumb-section .banner-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .warranty-banner.breadcrumb-section,
    .back-img {
        padding: 80px 0 60px;
    }

    .banner-content h1,
    .warranty-banner.breadcrumb-section .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .warranty-banner.breadcrumb-section,
    .back-img {
        padding: 70px 0 50px;
    }

    .banner-content h1,
    .warranty-banner.breadcrumb-section .banner-content h1 {
        font-size: 2rem;
    }
}

/* Alternative style without parallax */
.back-img.static {
    background-attachment: scroll;
}

/* Alternative overlay styles */
.back-img.dark-overlay::before {
    background: rgba(0, 0, 0, 0.5);
}

.back-img.gradient-overlay::before {
    background: linear-gradient(
        45deg,
        rgba(var(--snh-red-rgb), 0.6) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}
.warranty-section-title p{
    color: black ;
}
.warranty-include-card p{
    color: black;
}
.warranty-info-content p{
    color: black;
}
/* ===== CAROLA WARRANTY SECTION - RED & WHITE THEME ===== */
.carola-warranty-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.carola-warranty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--snh-red), var(--snh-red), var(--snh-red));
}

.carola-warranty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ===== LEFT COLUMN STYLES - REDUCED SIZE ===== */
.carola-warranty-left {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 30px; /* Reduced from 40px */
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carola-warranty-left:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--snh-red-rgb), 0.3);
}

.carola-warranty-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Reduced */
    background: rgba(var(--snh-red-rgb), 0.08);
    color: var(--snh-red);
    padding: 6px 14px; /* Reduced */
    border-radius: 50px;
    font-size: 0.75rem; /* Reduced */
    font-weight: 600;
    margin-bottom: 15px; /* Reduced */
    border: 1px solid rgba(var(--snh-red-rgb), 0.2);
    width: fit-content;
}

.carola-warranty-title {
    font-size: 2rem; /* Reduced from 2.5rem */
    font-weight: 800;
    margin-bottom: 12px; /* Reduced */
    color: #1a1a2e;
    line-height: 1.2;
}

.carola-warranty-title span {
    color: var(--snh-red);
    position: relative;
    display: inline-block;
}

.carola-warranty-title span::after {
    content: '';
    position: absolute;
    bottom: 4px; /* Adjusted */
    left: 0;
    right: 0;
    height: 6px; /* Reduced */
    background: rgba(var(--snh-red-rgb), 0.2);
    z-index: -1;
}

.carola-warranty-description {
    color: #666666;
    line-height: 1.5; /* Reduced */
    margin-bottom: 20px; /* Reduced */
    font-size: 0.9rem; /* Reduced */
}

/* Feature Items - COMPACT */
.carola-warranty-features-list {
    margin-bottom: 25px; /* Reduced */
    flex-grow: 1;
}

.carola-feature-item {
    display: flex;
    gap: 12px; /* Reduced */
    margin-bottom: 12px; /* Reduced from 20px */
    padding: 10px; /* Reduced from 12px */
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.carola-feature-item:hover {
    background: rgba(var(--snh-red-rgb), 0.03);
    border-left-color: var(--snh-red);
    transform: translateX(5px);
}

.carola-feature-icon {
    flex-shrink: 0;
    width: 32px; /* Reduced from 40px */
    height: 32px; /* Reduced from 40px */
    background: rgba(var(--snh-red-rgb), 0.1);
    border-radius: 8px; /* Reduced */
    display: flex;
    align-items: center;
    justify-content: center;
}

.carola-feature-icon i {
    font-size: 1rem; /* Reduced from 1.2rem */
    color: var(--snh-red);
}

.carola-feature-text h4 {
    font-size: 0.9rem; /* Reduced from 1rem */
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px; /* Reduced */
}

.carola-feature-text p {
    font-size: 0.75rem; /* Reduced from 0.85rem */
    color: #777777;
    line-height: 1.3;
}

/* CTA Button - COMPACT */
.carola-warranty-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Reduced */
    background: var(--snh-red);
    color: white;
    padding: 10px 22px; /* Reduced from 14px 28px */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem; /* Added */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--snh-red-rgb), 0.2);
    width: fit-content;
    margin-top: auto;
}

.carola-warranty-cta:hover {
    background: #e01e2e;
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--snh-red-rgb), 0.3);
}

.carola-warranty-cta i {
    font-size: 0.8rem; /* Reduced */
    transition: transform 0.3s ease;
}

/* ===== RIGHT COLUMN STYLES - KEPT SAME ===== */
.carola-warranty-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

/* Benefits Container */
.carola-benefits-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.carola-benefits-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--snh-red-rgb), 0.3);
}

.carola-benefits-container h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carola-benefits-container h3 i {
    color: var(--snh-red);
    font-size: 1.5rem;
}

/* Benefits Grid */
.carola-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.carola-benefit-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.carola-benefit-item:hover {
    background: rgba(var(--snh-red-rgb), 0.05);
    transform: translateX(3px);
}

.carola-benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(var(--snh-red-rgb), 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carola-benefit-icon i {
    font-size: 1.1rem;
    color: var(--snh-red);
}

.carola-benefit-content {
    flex: 1;
}

.carola-benefit-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.3;
}

.carola-benefit-content p {
    font-size: 0.8rem;
    color: #777777;
    line-height: 1.3;
    margin: 0;
}

/* Image Container */
.carola-image-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    aspect-ratio: 800 / 224;
}

.carola-warranty-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.carola-image-container:hover .carola-warranty-image {
    transform: scale(1.02);
}

.carola-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--snh-red-rgb), 0.08), rgba(0, 0, 0, 0.05));
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .carola-warranty-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .carola-warranty-left {
        padding: 30px;
    }
    
    .carola-warranty-title {
        font-size: 2rem;
    }
    
    .carola-benefits-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .carola-warranty-section {
        padding: 60px 0;
    }
    
    .carola-warranty-left {
        padding: 25px;
    }
    
    .carola-warranty-title {
        font-size: 1.8rem;
    }
    
    .carola-benefits-container {
        padding: 25px;
    }
    
    .carola-benefits-container h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .carola-benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .carola-benefit-item {
        padding: 12px;
    }
    
    .carola-image-container {
        aspect-ratio: 800 / 224;
    }
}

@media (max-width: 480px) {
    .carola-warranty-left {
        padding: 20px;
    }
    
    .carola-warranty-title {
        font-size: 1.5rem;
    }
    
    .carola-feature-item {
        padding: 8px;
    }
    
    .carola-feature-text h4 {
        font-size: 0.85rem;
    }
    
    .carola-warranty-cta {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .carola-benefits-container {
        padding: 20px;
    }
    
    .carola-benefits-container h3 {
        font-size: 1.1rem;
    }
    
    .carola-benefit-icon {
        width: 35px;
        height: 35px;
    }
    
    .carola-benefit-content h4 {
        font-size: 0.85rem;
    }
}