/**
 * Front Page Styles
 *
 * @package He-Solar
 */

/* ===================================
   New Hero Section - 900px height with green background
   =================================== */
   .hero-section-new {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
    background-color: #20620c;
  }
  
  .hero-slider-new {
    width: 100%;
    height: 100%;
  }
  
  .hero-slide-new {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Image wrapper with zoom animation */
  .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
  }
  
  .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Reduced animation duration from 20s to 12s for more noticeable zoom effect */
    animation: slowZoom 12s ease-in-out infinite alternate;
  }
  
  @keyframes slowZoom {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }
  
  /* Green overlay */
  .hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Reduced overlay opacity to make background image more visible */
    background: linear-gradient(135deg, rgba(32, 98, 12, 0.4) 0%, rgba(32, 98, 12, 0.5) 100%);
    z-index: 1;
  }
  
  /* Decorative leaves */
  .hero-leaf {
    position: absolute;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    /* Added fade-in animation for leaves */
    animation: fadeInLeaf 1.5s ease 0.5s forwards;
  }
  
  @keyframes fadeInLeaf {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 0.7;
      transform: translateY(0);
    }
  }
  
  .hero-leaf-left {
    /* Positioned at bottom left corner */
    left: 0;
    bottom: 0;
    height: 400px;
    width: auto;
  }
  
  .hero-leaf-right {
    /* Positioned at bottom right corner */
    right: 0;
    bottom: 0;
    height: 350px;
    width: auto;
  }
  
  /* Centered content */
  .hero-content-new {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Badge at top */
  .hero-badge {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .hero-title-new {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  }
  
  .hero-subtitle-new {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  }
  
  .hero-description-new {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  }
  
  .hero-buttons-new {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  /* Orange/yellow primary button */
  .btn-hero-primary {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 168, 37, 0.4);
  }
  
  .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(249, 168, 37, 0.6);
    background: linear-gradient(135deg, #fbb034 0%, #f68511 100%);
  }
  
  /* Video button with play icon */
  .btn-hero-video {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .btn-hero-video .play-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20620c;
    transition: all 0.3s ease;
  }
  
  .btn-hero-video:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-3px);
  }
  
  .btn-hero-video:hover .play-icon {
    transform: scale(1.1);
  }
  
  /* Pagination dots */
  .hero-pagination {
    bottom: 40px !important;
    z-index: 10;
  }
  
  .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-white);
    width: 40px;
    border-radius: 6px;
  }
  
  /* Swiper Navigation for new hero slider */
  .hero-slider-new .swiper-button-next,
  .hero-slider-new .swiper-button-prev {
    /* Added navigation arrow styles for new hero slider */
    color: var(--color-white);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .hero-slider-new .swiper-button-next:hover,
  .hero-slider-new .swiper-button-prev:hover {
    background-color: rgba(124, 179, 66, 0.8);
  }
  
  .hero-slider-new .swiper-button-next::after,
  .hero-slider-new .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
  }
  
  /* ===================================
             Hero Section
             =================================== */
  .hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }
  
  .hero-slider {
    width: 100%;
    height: 100%;
  }
  
  .hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 90, 46, 0.85) 0%, rgba(124, 179, 66, 0.7) 100%);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 700px;
    animation: fadeInUp 1s ease;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
  }
  
  .hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.95);
  }
  
  .hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
  }
  
  /* Swiper Navigation */
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    color: var(--color-white);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .hero-slider .swiper-button-next:hover,
  .hero-slider .swiper-button-prev:hover {
    background-color: var(--color-primary);
  }
  
  .hero-slider .swiper-button-next::after,
  .hero-slider .swiper-button-prev::after {
    font-size: 20px;
  }
  
  .hero-slider .swiper-pagination {
    bottom: 30px;
  }
  
  .hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--color-white);
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  
  .hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--color-primary);
    width: 30px;
    border-radius: 6px;
  }
  
  /* ===================================
             Services Section
             =================================== */
  .services-section {
    background-color: #f5f5f5;
    padding: 80px 0 100px;
    overflow: hidden;
  }
  
  .services-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
  }
  
  .services-header-left {
    padding-right: 20px;
  }
  
  .services-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #666;
    margin: 0;
  }
  
  .services-header-right {
    padding-left: 20px;
  }
  
  .services-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }
  
  .services-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 80px;
    margin: 0 auto;
  }
  
  .services-slider {
    width: 100%;
    overflow: visible !important;
  }
  
  .services-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  
  .services-slider .swiper-slide {
    width: 400px;
    height: auto;
    display: flex;
  }
  
  /* Redesigned service card to match design exactly */
  .service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  /* Reduced image height to match design */
  .service-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: visible;
    background-color: #e0e0e0;
  }
  
  .service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 16px 16px 0 0;
  }
  
  .service-card:hover .service-card-image img {
    transform: scale(1.05);
  }
  
  /* Icon positioned at bottom center with white circular background */
  .service-card-icon {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.9);
  }
  
  .service-card-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
  }
  
  /* Content area with centered text and proper spacing */
  .service-card-content {
    padding: 65px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    background: #ffffff;
  }
  
  .service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.3;
    text-align: center;
    width: 100%;
  }
  
  .service-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #999;
    margin-bottom: 24px;
    text-align: center;
    width: 100%;
  }
  
  /* Added proper divider line before button */
  .service-card-content .btn {
    border-top: 1px solid #e0e0e0;
    padding-top: 28px;
    margin-top: auto;
  }
  
  /* Removed incorrect ::after pseudo-element */
  
  /* Full-width button with outline style */
  .service-card .btn {
    width: 100%;
    text-align: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
  }
  
  /* Outline button style (default) */
  .btn-service-outline {
    background-color: transparent;
    color: #666;
    border: 1px solid #d0d0d0;
    border-top: 1px solid #e0e0e0;
    padding-top: 28px;
    margin-top: 24px;
  }
  
  .btn-service-outline:hover {
    background-color: #7cb342;
    color: #ffffff;
    border-color: #7cb342;
    border-top-color: #7cb342;
  }
  
  /* Filled button style (for featured card) */
  .btn-service-filled {
    background-color: #7cb342;
    color: #ffffff;
    border: 1px solid #7cb342;
    border-top: 1px solid #e0e0e0;
    padding-top: 28px;
    margin-top: 24px;
  }
  
  .btn-service-filled:hover {
    background-color: #6da036;
    border-color: #6da036;
    border-top-color: #6da036;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
  }
  
  .services-button-prev,
  .services-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    color: #333;
    z-index: 10;
  }
  
  .services-button-prev {
    left: 10px;
  }
  
  .services-button-next {
    right: 10px;
  }
  
  .services-button-prev:hover,
  .services-button-next:hover {
    background: #7cb342;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
  }
  
  .services-button-prev.swiper-button-disabled,
  .services-button-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  /* Animation on Scroll */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ===================================
             Trust Section
             =================================== */
  .trust-sustainability-section {
    padding: 100px 0;
    background-color: #ffffff;
  }
  
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  
  /* Left Column */
  .trust-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .trust-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #666;
    margin: 0;
  }
  
  .trust-badges {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .trust-badge {
    height: 80px;
    width: auto;
    object-fit: contain;
  }
  
  .trust-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .trust-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }
  
  /* Stat Boxes overlaying the image */
  .stat-boxes {
    position: relative;
    bottom: 72px;
    left: 30px;
    display: flex;
    gap: 20px;
  }
  
  .stat-box {
    padding: 30px 40px;
    border-radius: 8px;
    color: #ffffff;
    min-width: 160px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }
  
  .stat-box-green {
    background-color: #7cb342;
  }
  
  .stat-box-blue {
    background-color: #2c5282;
  }
  
  .stat-box .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: #ffffff;
  }
  
  .stat-box .stat-number::before {
    content: "+";
  }
  
  .stat-box .stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.95;
  }
  
  /* Right Column */
  .trust-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .trust-top-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
  }
  
  .trust-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }
  
  .trust-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
  }
  
  .trust-feature {
    display: flex;
    gap: 20px;
    align-items: start;
  }
  
  .trust-feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    object-fit: contain;
  }
  
  .trust-feature-content {
    flex: 1;
  }
  
  .trust-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
  }
  
  .trust-feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }
  
  .btn-trust-cta {
    display: inline-block;
    padding: 16px 48px;
    background-color: #2c5282;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
  }
  
  .btn-trust-cta:hover {
    background-color: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
  }
  
  /* Responsive for Trust Section */
  @media (max-width: 1024px) {
    .trust-sustainability-section {
      padding: 80px 0;
    }
  
    .trust-grid {
      gap: 60px;
    }
  
    .trust-main-title {
      font-size: 2rem;
    }
  
    .stat-boxes {
      bottom: 20px;
      left: 20px;
      gap: 15px;
    }
  
    .stat-box {
      padding: 25px 30px;
      min-width: 140px;
    }
  
    .stat-box .stat-number {
      font-size: 3rem;
    }
  
    .stat-box .stat-label {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .trust-sustainability-section {
      padding: 60px 0;
    }
  
    .trust-grid {
      grid-template-columns: 1fr;
      gap: 50px;
    }
  
    .trust-main-title {
      font-size: 1.75rem;
    }
  
    .trust-badges {
      gap: 20px;
      flex-wrap: wrap;
    }
  
    .trust-badge {
      height: 60px;
    }
  
    .stat-boxes {
      position: relative;
      bottom: 72px;
      left: 30px;
      flex-wrap: wrap;
    }
  
    .stat-box {
      padding: 20px 30px;
      min-width: 130px;
    }
  
    .stat-box .stat-number {
      font-size: 2.5rem;
    }
  
    .trust-feature-icon {
      width: 50px;
      height: 50px;
    }
  
    .trust-feature-title {
      font-size: 1.125rem;
    }
  
    .trust-feature-text {
      font-size: 0.9rem;
    }
  
    .btn-trust-cta {
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .trust-main-title {
      font-size: 1.5rem;
    }
  
    .stat-boxes {
      flex-direction: column;
      gap: 12px;
    }
  
    .stat-box {
      width: 100%;
      text-align: center;
    }
  
    .trust-feature {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  
  /* ===================================
           Trust Competence Section (New Design)
           =================================== */
  .trust-competence-section {
    padding: 100px 0;
  }
  
  .trust-top-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
  }
  
  /* Google Reviews Column (1/3) */
  .trust-google {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  
  .google-reviews-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
  }
  
  /* Center Text Column (2/3) */
  .trust-text-center {
    padding: 0 20px;
    text-align: center;
  }
  
  .trust-competence-title {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    margin: 0 0 30px 0;
  }
  
  .trust-competence-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 20px 0;
  }
  
  .trust-competence-text:last-child {
    margin-bottom: 0;
  }
  
  /* Hand Image Column (1/3) - Right aligned with slide animation */
  .trust-hand-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    /* Animation starts hidden and slides in from right */
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
  }
  
  .trust-hand-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
  }
  
  .trust-hand-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    /* Align to right edge of browser */
    margin-left: auto;
  }
  
  /* Product Slider Row */
  .product-slider-wrapper {
    margin-bottom: 60px;
    overflow: hidden;
  }
  
  .product-slider {
    width: 100%;
  }
  
  .product-slider .swiper-wrapper {
    display: flex;
    align-items: center;
  }
  
  .product-slider .swiper-slide {
    width: auto;
    height: auto;
  }
  
  .product-item {
    display: block;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .product-item:hover {
    transform: translateY(-8px);
  }
  
  .product-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  
  /* Bottom CTA Button */
  .trust-cta-wrapper {
    text-align: center;
  }
  
  .btn-trust-quote {
    display: inline-block;
    padding: 18px 60px;
    background-color: #2c5282;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(44, 82, 130, 0.3);
  }
  
  .btn-trust-quote:hover {
    background-color: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(44, 82, 130, 0.4);
  }
  
  /* Responsive for Trust Competence Section */
  @media (max-width: 1024px) {
    .trust-competence-section {
      padding: 80px 0;
    }
  
    .trust-top-row {
      gap: 30px;
      margin-bottom: 60px;
    }
  
    .trust-competence-title {
      font-size: 2rem;
    }
  
    .trust-hand-image {
      max-width: 300px;
    }
  
    .product-item img {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-width: 768px) {
    .trust-competence-section {
      padding: 60px 0;
    }
  
    .trust-top-row {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }
  
    .trust-google {
      justify-content: flex-start;
    }
  
    .google-reviews-image {
      max-width: 180px;
    }
  
    .trust-text-center {
      padding: 0;
      text-align: center;
    }
  
    .trust-competence-title {
      font-size: 1.75rem;
    }
  
    .trust-competence-text {
      font-size: 0.9rem;
    }
  
    .trust-hand-wrapper {
      justify-content: center;
      /* On mobile, still animate from right */
      transform: translateX(50px);
    }
  
    .trust-hand-image {
      max-width: 280px;
    }
  
    .product-item img {
      width: 100%;
      height: auto;
    }
  
    .btn-trust-quote {
      width: 100%;
      max-width: 400px;
    }
  }
  
  @media (max-width: 480px) {
    .trust-competence-title {
      font-size: 1.5rem;
    }
  
    .trust-competence-text {
      font-size: 0.875rem;
    }
  
    .google-reviews-image {
      max-width: 150px;
    }
  
    .trust-hand-image {
      max-width: 250px;
    }
  
    .product-item {
      padding: 15px;
    }
  
    .product-item img {
      width: 100%;
      height: auto;
    }
  }
  
  /* ===================================
         Map Section (Two Column Layout)
         =================================== */
  .map-section {
    padding: 100px 0;
    background-color: #ffffff;
  }
  
  /* Added grid layout for two-column responsive design */
  .map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  /* Left Column - Text Content */
  .map-text {
    padding-right: 20px;
  }
  
  .map-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    margin: 0 0 30px 0;
  }
  
  .map-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 20px 0;
  }
  
  .map-description:last-child {
    margin-bottom: 0;
  }
  
  /* Right Column - Google Maps Iframe */
  .map-iframe-wrapper {
    padding-left: 20px;
  }
  
  .map-iframe-wrapper iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive for Map Section */
  @media (max-width: 1024px) {
    .map-section {
      padding: 80px 0;
    }
  
    .map-grid {
      gap: 40px;
    }
  
    .map-title {
      font-size: 2rem;
    }
  
    .map-iframe-wrapper iframe {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .map-section {
      padding: 60px 0;
    }
  
    /* Stack columns vertically on mobile */
    .map-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .map-text,
    .map-iframe-wrapper {
      padding: 0;
    }
  
    .map-title {
      font-size: 1.75rem;
    }
  
    .map-description {
      font-size: 0.95rem;
    }
  
    .map-iframe-wrapper iframe {
      height: 350px;
    }
  }
  
  @media (max-width: 480px) {
    .map-section {
      padding: 50px 0;
    }
  
    .map-title {
      font-size: 1.5rem;
    }
  
    .map-description {
      font-size: 0.875rem;
    }
  
    .map-iframe-wrapper iframe {
      height: 300px;
    }
  }
  
  /* ===================================
             CTA Section
             =================================== */
  .cta-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
  }
  
  .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  
  .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.9) 0%, rgba(44, 82, 130, 0) 100%);
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    line-height: 1.2;
  }
  
  .cta-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.95);
  }
  
  .cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* ===================================
             Responsive Design
             =================================== */
  @media (max-width: 1024px) {
    /* Increased mobile slider height */
    .hero-section-new {
      height: 100vh;
    }
  
    .hero-title-new {
      font-size: 3rem;
    }
  
    .hero-subtitle-new {
      font-size: 1.5rem;
    }
  
    .hero-description-new {
      font-size: 1rem;
    }
  
    .hero-leaf-left,
    .hero-leaf-right {
      height: 300px;
    }
  
    .hero-section {
      height: 500px;
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.25rem;
    }
  
    /* Completing tablet responsive styles for services section */
    .services-section {
      padding: 60px 0 80px;
    }
  
    .services-header {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 50px;
    }
  
    .services-header-left,
    .services-header-right {
      padding: 0;
    }
  
    .services-title {
      font-size: 2rem;
    }
  
    .services-slider-wrapper {
      padding: 0 60px;
    }
  
    .services-slider .swiper-slide {
      width: 350px;
    }
  
    .services-button-prev,
    .services-button-next {
      width: 45px;
      height: 45px;
    }
  
    .cta-title {
      font-size: 2rem;
    }
  
    .cta-text {
      font-size: 1.125rem;
    }
  }
  
  @media (max-width: 768px) {
    /* Mobile responsive styles */
    .hero-section-new {
      height: 100vh;
    }
  
    .hero-title-new {
      font-size: 2.25rem;
    }
  
    .hero-subtitle-new {
      font-size: 1.25rem;
    }
  
    .hero-description-new {
      font-size: 0.95rem;
    }
  
    .hero-badge {
      font-size: 0.75rem;
      padding: 8px 20px;
    }
  
    .hero-leaf-left,
    .hero-leaf-right {
      height: 250px;
    }
  
    .hero-section {
      height: 450px;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-subtitle {
      font-size: 1.125rem;
    }
  
    .hero-description {
      font-size: 1rem;
    }
  
    .services-section {
      padding: 50px 0 70px;
    }
  
    .services-header {
      gap: 20px;
      margin-bottom: 40px;
    }
  
    .services-title {
      font-size: 1.75rem;
    }
  
    .services-description {
      font-size: 0.95rem;
    }
  
    .services-slider-wrapper {
      padding: 0 50px;
    }
  
    .services-slider .swiper-slide {
      width: calc(100vw - 100px);
    }
  
    .services-button-prev,
    .services-button-next {
      width: 40px;
      height: 40px;
    }
  
    .cta-section {
      padding: var(--spacing-2xl) 0;
    }
  
    .cta-title {
      font-size: 1.75rem;
    }
  
    .cta-text {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    /* Small mobile responsive styles */
    .hero-section-new {
      height: 100vh;
    }
  
    .hero-title-new {
      font-size: 1.875rem;
    }
  
    .hero-subtitle-new {
      font-size: 1.125rem;
    }
  
    .hero-description-new {
      font-size: 0.875rem;
    }
  
    .hero-buttons-new {
      flex-direction: column;
      width: 100%;
    }
  
    .btn-hero-primary,
    .btn-hero-video {
      width: 100%;
      justify-content: center;
    }
  
    .hero-leaf-left,
    .hero-leaf-right {
      height: 200px;
    }
  
    .services-title {
      font-size: 1.5rem;
    }
  
    .services-slider .swiper-slide {
      width: calc(100vw - 80px);
    }
  
    .services-slider-wrapper {
      padding: 0 40px;
    }
  
    .services-button-prev,
    .services-button-next {
      width: 40px;
      height: 40px;
    }
  
    .cta-title {
      font-size: 1.5rem;
    }
  
    .cta-text {
      font-size: 0.95rem;
    }
  }
  
  /* ===================================
       Customer Testimonials Section
       =================================== */
  .testimonials-section {
    padding: 100px 0;
    background-color: #f5f5f5;
  }
  
  /* Section Header */
  .testimonials-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
  }
  
  .testimonials-header-left {
    padding-right: 20px;
  }
  
  .testimonials-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    margin: 0;
  }
  
  .testimonials-header-right {
    padding-left: 20px;
  }
  
  .testimonials-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }
  
  /* Featured Video Testimonial */
  .testimonial-featured {
    margin-bottom: 60px;
  }
  
  .testimonial-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  
  .testimonial-video-wrapper {
    width: 100%;
  }
  
  .video-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .testimonial-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .quote-icon {
    color: #333 !important;
    margin-bottom: 20px;
  }
  
  .testimonial-featured-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.3;
  }
  
  .testimonial-featured-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 20px 0;
  }
  
  .testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }
  
  /* Three Video Testimonials Grid */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .testimonial-card {
    padding: 0 !important;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .testimonial-card-video {
    width: 100%;
  }
  
  .quote-icon-small {
    color: #333 !important;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  
  .testimonial-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
  }
  
  .testimonial-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 15px 0;
  }
  
  .testimonial-card-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }
  
  /* Google Reviews Slider */
  .google-reviews-slider-wrapper {
    padding-top: 60px !important;
    position: relative;
    padding: 0 60px;
  }
  
  .google-reviews-slider {
    overflow: hidden;
  }
  
  .google-review-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .review-avatar {
    flex-shrink: 0;
  }
  
  .avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .review-info {
    flex: 1;
  }
  
  .review-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
  }
  
  .google-logo-small {
    height: 16px;
    width: auto;
  }
  
  .review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
  }
  
  .star {
    color: #ffc107;
    font-size: 1.25rem;
  }
  
  .verified-badge {
    color: #4caf50;
    font-size: 1rem;
    margin-left: 8px;
  }
  
  .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 10px 0;
    flex: 1;
  }
  
  .review-link {
    font-size: 0.9rem;
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .review-link:hover {
    color: #388e3c;
  }
  
  /* Navigation Arrows for Reviews */
  .reviews-button-prev,
  .reviews-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
  }
  
  .reviews-button-prev {
    left: 0;
  }
  
  .reviews-button-next {
    right: 0;
  }
  
  .reviews-button-prev:hover,
  .reviews-button-next:hover {
    background-color: #4caf50;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .testimonials-header {
      gap: 40px;
    }
  
    .testimonial-featured-grid {
      gap: 40px;
      padding: 30px;
    }
  
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .testimonials-section {
      padding: 60px 0;
    }
  
    .testimonials-header {
      grid-template-columns: 1fr;
      gap: 30px;
      margin-bottom: 40px;
    }
  
    .testimonials-header-left,
    .testimonials-header-right {
      padding: 0;
    }
  
    .testimonials-title {
      font-size: 2rem;
    }
  
    .testimonial-featured-grid {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 25px;
    }
  
    .testimonial-featured-title {
      font-size: 1.5rem;
    }
  
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .google-reviews-slider-wrapper {
      padding: 0 50px;
    }
  
    .reviews-button-prev,
    .reviews-button-next {
      width: 36px;
      height: 36px;
    }
  }
  
  @media (max-width: 480px) {
    .testimonials-title {
      font-size: 1.75rem;
    }
  
    .testimonial-featured-grid {
      padding: 20px;
    }
  
    .testimonial-card-content {
      padding: 20px;
    }
  
    .google-reviews-slider-wrapper {
      padding: 0 40px;
    }
  }
  
  /* Added 5 Steps Section with scroll animations */
  
  .btn-trust-quote {
    display: inline-block;
    padding: 16px 48px;
    background-color: #7cb342;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.3);
  }
  
  .btn-trust-quote:hover {
    background-color: #6da036;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(124, 179, 66, 0.4);
  }
  
  /* ===================================
     5 Steps Section
     =================================== */
  .steps-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    overflow: hidden;
  }
  
  .steps-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
  }
  
  .steps-main-title {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    margin: 0 0 30px 0;
  }
  
  .steps-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 20px 0;
  }
  
  .btn-steps-cta {
    display: inline-block;
    padding: 16px 48px;
    background-color: #7cb342;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(124, 179, 66, 0.3);
  }
  
  .btn-steps-cta:hover {
    background-color: #6da036;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(124, 179, 66, 0.4);
  }
  
  .steps-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .step-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .step-item.step-left {
    transform: translateX(-100px);
  }
  
  .step-item.step-right {
    transform: translateX(100px);
  }
  
  .step-item.animate-in {
    opacity: 1;
    transform: translateX(0);
  }
  
  .step-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .step-left .step-content {
    grid-template-areas: "text circle image";
  }
  
  .step-left .step-text-box {
    grid-area: text;
    text-align: left;
  }
  
  .step-left .step-number-circle {
    grid-area: circle;
  }
  
  .step-left .step-image-wrapper {
    grid-area: image;
  }
  
  .step-right .step-content {
    grid-template-areas: "image circle text";
  }
  
  .step-right .step-text-box {
    grid-area: text;
    text-align: left;
  }
  
  .step-right .step-number-circle {
    grid-area: circle;
  }
  
  .step-right .step-image-wrapper {
    grid-area: image;
  }
  
  /* White text boxes with CSS triangles pointing to green circle */
  .step-text-box {
    position: relative;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  /* Triangle pointing RIGHT for left-aligned steps */
  .step-left .step-text-box::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #ffffff;
  }
  
  /* Triangle pointing LEFT for right-aligned steps */
  .step-right .step-text-box::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #ffffff;
  }
  
  .step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.3;
  }
  
  .step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }
  
  .step-number-circle {
    width: 90px;
    height: 90px;
    background-color: #7cb342;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
  }
  
  .step-number {
  }
  
  .step-number-mobile {
    display: none;
  }
  
  .step-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .step-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }
  
  .step-arrow {
    position: absolute;
    bottom: -50px;
    z-index: 5;
    opacity: 0.7;
  }
  
  .step-arrow-right {
    right: 45%;
  }
  
  .step-arrow-left {
    left: 45%;
  }
  
  .step-item:last-child .step-arrow {
    display: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .steps-section {
      padding: 60px 0;
    }
  
    .steps-main-title {
      font-size: 2rem;
    }
  
    .step-content {
      grid-template-columns: 1fr !important;
      grid-template-areas: "image" "text" !important;
      gap: 20px;
    }
  
    .step-number-circle {
      display: none;
    }
  
    .step-number-mobile {
      display: flex;
      position: absolute;
      top: 20px;
      right: 20px;
      width: 70px;
      height: 70px;
      background-color: #7cb342;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1;
      box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
      z-index: 10;
    }
  
    .step-text-box {
      padding: 30px;
    }
  
    /* Remove triangles on mobile */
    .step-left .step-text-box::after,
    .step-right .step-text-box::after {
      display: none;
    }
  
    .step-arrow {
      display: none;
    }
  
    .step-item {
      margin-bottom: 40px;
    }
  
    .step-item.step-left,
    .step-item.step-right {
      transform: translateY(50px);
    }
  
    .step-item.animate-in {
      transform: translateY(0);
    }
  }
  
  /* ========================================
     PV Step Form - Unique Styles
     ======================================== */
  
  .pv-step-form-section {
    padding: 80px 20px;
    min-height: 100vh;
  }
  
  .pv-step-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .pv-step-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .pv-step-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .pv-step-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Progress Bar */
  .pv-step-progress-wrapper {
    margin-bottom: 50px;
  }
  
  .pv-step-progress-bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
  }
  
  .pv-step-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7cb342 0%, #9ccc65 100%);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 25%;
    box-shadow: 0 0 10px rgba(124, 179, 66, 0.4);
  }
  
  .pv-step-indicators {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .pv-step-indicator {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  
  .pv-step-indicator.pv-step-active {
    opacity: 1;
  }
  
  .pv-step-indicator-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .pv-step-indicator.pv-step-active .pv-step-indicator-circle {
    background-color: #7cb342;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.4);
  }
  
  .pv-step-indicator.pv-step-completed .pv-step-indicator-circle {
    background-color: #7cb342;
    color: white;
  }
  
  .pv-step-indicator.pv-step-completed .pv-step-indicator-circle::after {
    content: "✓";
    position: absolute;
    font-size: 1.5rem;
  }
  
  .pv-step-indicator-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-align: center;
    transition: color 0.3s ease;
  }
  
  .pv-step-indicator.pv-step-active .pv-step-indicator-label {
    color: #7cb342;
  }
  
  /* Form */
  .pv-step-form {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }
  
  .pv-step-content {
    display: none;
    animation: pvFadeSlideIn 0.5s ease;
  }
  
  .pv-step-content.pv-step-active {
    display: block;
  }
  
  @keyframes pvFadeSlideIn {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .pv-step-content-header {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .pv-step-number-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #7cb342;
    background-color: rgba(124, 179, 66, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .pv-step-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
  }
  
  .pv-step-content-description {
    font-size: 1rem;
    color: #666;
  }
  
  /* Form Grid */
  .pv-step-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .pv-step-form-group {
    display: flex;
    flex-direction: column;
  }
  
  .pv-step-form-group.pv-step-full-width {
    grid-column: 1 / -1;
  }
  
  .pv-step-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
  }
  
  .pv-step-input,
  .pv-step-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    color: #333;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
  }
  
  .pv-step-input:focus,
  .pv-step-textarea:focus {
    outline: none;
    background-color: white;
    border-color: #7cb342;
    box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.1);
  }
  
  .pv-step-input::placeholder,
  .pv-step-textarea::placeholder {
    color: #999;
  }
  
  .pv-step-textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .pv-step-hint {
    font-size: 0.8125rem;
    color: #999;
    margin-top: 6px;
    display: block;
  }
  
  /* Radio Buttons */
  .pv-step-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .pv-step-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    color: #333;
  }
  
  .pv-step-radio-label:hover {
    background-color: #f0f0f0;
  }
  
  .pv-step-radio {
    display: none;
  }
  
  .pv-step-radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .pv-step-radio:checked + .pv-step-radio-custom {
    border-color: #7cb342;
    background-color: #7cb342;
  }
  
  .pv-step-radio:checked + .pv-step-radio-custom::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
  }
  
  .pv-step-radio:checked ~ .pv-step-radio-label {
    background-color: rgba(124, 179, 66, 0.05);
    border-color: #7cb342;
  }
  
  /* Checkbox */
  .pv-step-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.6;
  }
  
  .pv-step-checkbox {
    display: none;
  }
  
  .pv-step-checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .pv-step-checkbox:checked + .pv-step-checkbox-custom {
    border-color: #7cb342;
    background-color: #7cb342;
  }
  
  .pv-step-checkbox:checked + .pv-step-checkbox-custom::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .pv-step-link {
    color: #7cb342;
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .pv-step-link:hover {
    color: #689f38;
  }
  
  /* Navigation Buttons */
  .pv-step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
  }
  
  .pv-step-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
  }
  
  .pv-step-btn-icon {
    transition: transform 0.3s ease;
  }
  
  .pv-step-btn-primary {
    background-color: #7cb342;
    color: white;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    margin-left: auto;
  }
  
  .pv-step-btn-primary:hover {
    background-color: #689f38;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
  }
  
  .pv-step-btn-primary:hover .pv-step-btn-icon {
    transform: translateX(4px);
  }
  
  .pv-step-btn-primary:active {
    transform: translateY(0);
  }
  
  .pv-step-btn-secondary {
    background-color: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
  }
  
  .pv-step-btn-secondary:hover {
    background-color: #e9ecef;
    border-color: #ccc;
  }
  
  .pv-step-btn-secondary:hover .pv-step-btn-icon {
    transform: translateX(-4px);
  }
  
  .pv-step-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  /* Success Message */
  .pv-step-success {
    text-align: center;
    padding: 60px 40px;
    animation: pvFadeSlideIn 0.6s ease;
  }
  
  .pv-step-success-icon {
    margin-bottom: 30px;
    animation: pvScaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  @keyframes pvScaleIn {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .pv-step-success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
  }
  
  .pv-step-success-text {
    font-size: 1.125rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .pv-step-form-section {
      padding: 40px 16px;
    }
  
    .pv-step-main-title {
      font-size: 1.875rem;
    }
  
    .pv-step-subtitle {
      font-size: 1rem;
    }
  
    .pv-step-indicators {
      gap: 8px;
    }
  
    .pv-step-indicator-circle {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  
    .pv-step-indicator-label {
      font-size: 0.75rem;
    }
  
    .pv-step-form {
      padding: 30px 20px;
      border-radius: 16px;
    }
  
    .pv-step-content-title {
      font-size: 1.5rem;
    }
  
    .pv-step-form-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .pv-step-navigation {
      flex-direction: column-reverse;
    }
  
    .pv-step-btn {
      width: 100%;
      justify-content: center;
    }
  
    .pv-step-btn-primary {
      margin-left: 0;
    }
  
    .pv-step-success {
      padding: 40px 20px;
    }
  
    .pv-step-success-title {
      font-size: 1.5rem;
    }
  
    .pv-step-success-text {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .pv-step-indicator-label {
      display: none;
    }
  
    .pv-step-main-title {
      font-size: 1.5rem;
    }
  
    .pv-step-content-title {
      font-size: 1.25rem;
    }
  }
  
  /* ===================================
     Blog Preview Section Styles
     =================================== */
  
  .blog-preview-section {

  }
  
  .blog-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .blog-preview-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .blog-preview-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
  }
  
  .blog-preview-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .blog-preview-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .blog-preview-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e9ecef;
    position: relative;
  }
  
  .blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
  }
  
  .blog-preview-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .blog-preview-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
  }
  
  .blog-preview-category {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .blog-preview-date {
    color: #999;
  }
  
  .blog-preview-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  
  .blog-preview-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .blog-preview-title a:hover {
    color: #2e7d32;
  }
  
  .blog-preview-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
  }
  
  .blog-preview-link {
    display: inline-flex;
    align-items: center;
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
    gap: 5px;
  }
  
  .blog-preview-link:hover {
    gap: 10px;
  }
  
  .blog-preview-link::after {
    content: "→";
    font-size: 1.2rem;
  }
  
  .blog-preview-footer {
    text-align: center;
  }
  
  .blog-preview-button {
    display: inline-block;
    padding: 14px 32px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .blog-preview-button:hover {
    background: #1b5e20;
    transform: translateY(-2px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .blog-preview-section {
      padding: 60px 0;
    }
  
    .blog-preview-header h2 {
      font-size: 2rem;
    }
  
    .blog-preview-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  
    .blog-preview-image {
      height: 200px;
    }
  }
  
  /* Blog Preview Section - Horizontales Listen-Layout statt Grid */
  .blog-preview-section {

  }
  
  .blog-preview-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .blog-preview-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
  }
  
  .blog-preview-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Liste statt Grid - Beiträge untereinander */
  .blog-preview-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  /* Horizontales Card-Layout - Bild links 1/3, Text rechts 2/3 */
  .blog-preview-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    align-items: start;
  }
  
  .blog-preview-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
  }
  
  /* Bild-Bereich links - 1/3 Breite */
  .blog-preview-item-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 12px 0 0 12px;
  }
  
  .blog-preview-item-image a {
    display: block;
    height: 100%;
  }
  
  .blog-preview-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-preview-item:hover .blog-preview-item-image img {
    transform: scale(1.08);
  }
  
  /* Content-Bereich rechts - 2/3 Breite */
  .blog-preview-item-content {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .blog-preview-item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .blog-preview-category {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .blog-preview-date {
    color: #999;
    font-size: 0.9rem;
  }
  
  .blog-preview-item-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .blog-preview-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .blog-preview-item-title a:hover {
    color: #7cb342;
  }
  
  .blog-preview-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .blog-preview-read-more {
    display: inline-flex;
    align-items: center;
    color: #7cb342;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    gap: 8px;
    font-size: 1rem;
  }
  
  .blog-preview-read-more:hover {
    gap: 12px;
  }
  
  .blog-preview-cta {
    text-align: center;
  }
  
  .blog-preview-empty {
    text-align: center;
    color: #999;
    font-size: 1.125rem;
    padding: 40px 0;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .blog-preview-item {
      gap: 30px;
    }
  
    .blog-preview-item-content {
      padding: 25px 25px 25px 0;
    }
  
    .blog-preview-item-title {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .blog-preview-section {
      padding: 60px 0;
    }
  
    .blog-preview-title {
      font-size: 2rem;
    }
  
    .blog-preview-list {
      gap: 30px;
    }
  
    /* Auf Mobile Stack-Layout - Bild oben, Text unten */
    .blog-preview-item {
      grid-template-columns: 1fr;
      gap: 0;
    }
  
    .blog-preview-item-image {
      min-height: 220px;
      border-radius: 12px 12px 0 0;
    }
  
    .blog-preview-item-content {
      padding: 25px;
    }
  
    .blog-preview-item-title {
      font-size: 1.35rem;
    }
  }
  