@charset "utf-8";
/* CSS Document */
/* Custom Modern Design for 30 Day Fitness Plan Page */
    .fp-hero {
      position: relative;
      background: url('wolly1.jpg') no-repeat center center/cover;
      min-height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      border-bottom: 4px solid var(--red);
    }
    .fp-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 79, 38, 0.75), rgba(227, 17, 29, 0.55));
    }
    .fp-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 30px;
      animation: fadeInDown 1s ease-out;
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fp-hero-content h1 {
      font-size: 3.8rem;
      font-family: var(--heading);
      margin: 0 0 10px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }
    .fp-hero-content p {
      font-size: 1.5rem;
      font-weight: 500;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
      margin-bottom: 25px;
    }
    
    .fp-section {
      padding: 75px 0;
      background: #fff;
    }
    .fp-section-alt {
      background: var(--soft);
    }
    
    .fp-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }
    
    .fp-intro-text p {
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 20px;
      line-height: 1.8;
    }
    
    .fp-card {
      background: #fff;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.06);
      border-top: 5px solid var(--green);
      position: relative;
    }
    
    .fp-card h3 {
      color: var(--green-deep);
      font-family: var(--heading);
      font-size: 1.8rem;
      margin: 0 0 15px;
    }
    
    .fp-levels {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    
    .fp-level-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
      position: relative;
      overflow: hidden;
    }
    .fp-level-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--green), var(--red));
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .fp-level-card:hover::after {
      transform: scaleX(1);
    }
    .fp-level-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    
    .fp-level-card h3 {
      color: var(--green);
      font-family: var(--heading);
      font-size: 1.6rem;
      margin: 0 0 15px;
    }
    
    .fp-poster img {
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      width: 100%;
      object-fit: cover;
      border: 8px solid #fff;
    }
    
    .fp-list {
      list-style: none;
      padding: 0;
    }
    
    .fp-list li {
      position: relative;
      padding-left: 45px;
      margin-bottom: 22px;
      font-size: 1.05rem;
      color: #333;
      line-height: 1.6;
    }
    
    .fp-list li::before {
      content: '✔';
      position: absolute;
      left: 0;
      top: 2px;
      color: #fff;
      background: var(--red);
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 0.85rem;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(227, 17, 29, 0.3);
    }
    
    .fp-cta-box {
      background: linear-gradient(135deg, var(--green-deep), var(--green));
      color: #fff;
      text-align: center;
      padding: 60px 30px;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0, 109, 51, 0.2);
      margin-bottom: 20px;
    }
    
    .fp-cta-box h2 {
      font-family: var(--heading);
      font-size: 2.8rem;
      margin: 0 0 15px;
      color: #fff;
    }
    
    .fp-price-wrap {
      display: inline-block;
      margin: 30px 0;
      position: relative;
    }
    
    .fp-price {
      font-size: 4rem;
      font-weight: 800;
      background: #fff;
      color: var(--red);
      padding: 15px 45px;
      border-radius: 60px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      /*font-family:var(--heading) ; */
      display: inline-block;
    }
    
    .fp-wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #25D366;
      color: #fff !important;
      font-size: 1.25rem;
      font-weight: 700;
      padding: 18px 40px;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
      text-decoration: none;
      text-transform: uppercase;
    }
    
    .fp-wa-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
      background: #20BA56;
    }

    .fp-wa-btn svg {
      width: 26px;
      height: 26px;
      fill: #fff;
    }

    /* Target Elements */
    .fp-target-grid {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 25px;
    }
    .fp-target-pill {
      background: rgba(255,255,255,0.15);
      padding: 10px 20px;
      border-radius: 30px;
      font-size: 1.05rem;
      font-weight: 600;
    }

    @media (max-width: 992px) {
      .fp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .fp-hero-content h1 { font-size: 3rem; }
      .fp-poster { order: -1; }
    }
    @media (max-width: 576px) {
      .fp-hero-content h1 { font-size: 2.3rem; }
      .fp-hero-content p { font-size: 1.1rem; }
      .fp-cta-box h2 { font-size: 2.2rem; }
      .fp-price { font-size: 2.8rem; padding: 12px 30px; }
    }

/* Catchy Doctor Timings Section Styles */
    .fp-timings-wrapper {
      background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
      padding: 75px 0;
      border-top: 4px solid #e3111d;
    }
    .fp-timings-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
      gap: 25px;
      margin-top: 45px;
    }
    .fp-timing-card {
      background: #fff;
      border-left: 5px solid #004f26;
      padding: 25px 20px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      display: flex;
      align-items: center;
      gap: 20px;
      transition: all 0.3s ease;
    }
    .fp-timing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
      border-left-color: #e3111d;
    }
    .fp-timing-icon {
      background: rgba(0, 79, 38, 0.08);
      color: #004f26;
      width: 55px;
      height: 55px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    .fp-timing-card:hover .fp-timing-icon {
      background: rgba(227, 17, 29, 0.08);
      color: #e3111d;
    }
    .fp-timing-icon svg {
      width: 26px;
      height: 26px;
      fill: currentColor;
    }
    .fp-timing-info h4 {
      margin: 0 0 8px;
      font-family: 'Playfair Display', serif;
      color: #222;
      font-size: 1.3rem;
    }
    .fp-timing-info p {
      margin: 0;
      color: #666;
      font-size: 0.95rem;
      font-weight: 500;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }
    .fp-timing-info p span {
      background: #f1f3f5;
      padding: 5px 12px;
      border-radius: 6px;
      color: #004f26;
      font-weight: 600;
      font-size: 0.95rem;
      border: 1px solid #e2e8f0;
    }

    /* Responsive Mobile Fix for Program Highlights Section */
    @media (max-width: 768px) {
      .fp-section-alt .container.fp-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
      }
      .fp-poster img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      }
    }
