/* Custom CSS for Energie Positive */

/* --- GENERAL STYLES --- */
body {
    font-family: 'Poppins', sans-serif;
    color: #c9c9c9;
    background-color: #1a1a1a;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .section-heading {
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .btn-primary {
    background: linear-gradient(45deg, #a52a2a, #8b0000);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: linear-gradient(45deg, #8b0000, #a52a2a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.5);
  }
  
  .btn-outline-light {
    color: #fff;
    border-color: #fff;
    transition: all 0.3s ease;
  }
  
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  
  .text-red {
    color: #ff4500 !important;
    font-family: 'Crimson Pro', serif;
  }
  
  .bg-dark-alt {
    background-color: #121212 !important;
  }
  
  .icon-lg {
    font-size: 2rem;
    color: #ff4500;
  }
  
  /* --- HEADER AND NAVIGATION --- */
  .main-header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-brand .brand-name {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #fff;
    margin-left: 10px;
  }
  
  .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #ff4500 !important;
  }
  
  /* --- HERO SECTION --- */
  .hero-main {
    min-height: 100vh;
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8),
        rgba(139, 0, 0, 0.6)
      ),
      url('../img/1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    padding-top: 120px;
  }
  
  .hero-title {
    font-family: 'Crimson Pro', serif;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .highlight-text {
    background: linear-gradient(90deg, #ff4500, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }
  
  /* --- ABOUT AND APPROACH SECTIONS --- */
  .content-block {
    padding-left: 30px;
  }
  
  .info-card,
  .contact-form-card {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
  }
  
  /* --- PROGRAM CARDS --- */
  .program-card {
    background-color: #1e1e1e;
    color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: #ff4500;
  }
  
  .program-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff4500;
  }
  
  .program-card h3 {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    font-size: 1.8rem;
  }
  
  /* --- TESTIMONIALS --- */
  .testimonial-box {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-content {
    flex-grow: 1;
    margin-bottom: 20px;
  }
  
  .icon-quote {
    font-size: 2rem;
    color: #ff4500;
    margin-bottom: 10px;
  }
  
  .testimonial-box p {
    font-style: italic;
    font-size: 1.1rem;
    color: #ccc;
  }
  
  .testimonial-meta {
    display: flex;
    align-items: center;
    margin-top: auto;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #ff4500;
  }
  
  .author-info h5 {
    margin-bottom: 0;
    color: #ff4500;
    font-weight: 600;
  }
  
  .author-info span {
    font-size: 0.9rem;
    color: #aaa;
  }
  
  /* --- PRICING --- */
  .pricing-plan {
    background-color: #1e1e1e;
    color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .pricing-plan.featured {
    border-color: #ff4500;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #1e1e1e linear-gradient(45deg, rgba(165, 42, 42, 0.2), transparent);
  }
  
  .pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff4500;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .plan-title {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    font-size: 2rem;
    color: #fff;
  }
  
  .plan-price {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #ff4500;
    margin: 20px 0;
  }
  
  .plan-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
  }
  
  .plan-features {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin-top: 30px;
  }
  
  .plan-features li {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .icon-check {
    color: #ff4500;
    margin-right: 10px;
  }
  
  /* --- FAQ --- */
  .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  
  .accordion-button {
    background-color: #1e1e1e !important;
    color: #ff4500 !important;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: #2a2a2a !important;
    color: #fff !important;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: #ff4500;
  }
  
  .accordion-body {
    background-color: #1e1e1e;
    border-top: none;
  }
  
  /* --- CONTACT FORM --- */
  .form-control {
    background-color: #2a2a2a;
    border: 1px solid #333;
    color: #fff;
  }
  
  .form-control:focus {
    background-color: #2a2a2a;
    color: #fff;
    border-color: #ff4500;
    box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.25);
  }
  
  /* --- FOOTER --- */
  .main-footer {
    background: linear-gradient(135deg, #121212, #242424);
    color: #c9c9c9;
  }
  
  .footer-title {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-links li a {
    color: #c9c9c9;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links li a:hover {
    color: #ff4500;
  }
  
  .copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* --- COOKIE POPUP --- */
  .cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
    animation: fadeIn 0.5s ease-out forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
  
  .cookie-content h5 {
    color: #ff4500;
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  .cookie-content p {
    color: #c9c9c9;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .cookie-buttons .btn-sm {
    font-size: 0.8rem;
    padding: 6px 15px;
  }