/*
Theme Name: Sunshine Express Car Wash
Theme URI: https://sunshinewashes.com/
Author: Alex Reza
Author URI: https://fiverr.com/f_rezawl
Description: Custom WordPress Theme for Sunshine Express Car Wash.
Version: 1.1.0
Text Domain: sunshine
*/

/* Reset & Globals */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f7f7f7;
      color: rgb(255, 255, 255);
      padding-top: 115px; /* Prevent content from hiding behind absolute header */
      font-family: "Geomanist Medium", Helvetica, Arial, Lucida, sans-serif;
      font-style: italic;
      font-weight: 500;
      font-size: 24px;
      line-height: 31px;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Luckiest Guy', cursive, sans-serif;
      font-style: normal;
      font-weight: 500;
      color: rgb(255, 255, 255);
      font-size: 95px;
      line-height: 114px;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    /* Variables */
    :root {
      --green: #008f4c;
      --yellow: #ffcb05;
      --purple: #a600ff;
      --light-blue: #e3f2fd;
      --gray-bg: #e6e6e6;
      --black: #000000;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 14px;
      text-align: center;
      cursor: pointer;
      border: none;
    }

    .btn-yellow {
      background-color: var(--yellow);
      color: var(--black);
    }

    .btn-outline-white {
      background-color: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-green {
      background-color: var(--green);
      color: white;
    }

    .btn-white {
      background-color: white;
      color: var(--black);
      border: 1px solid #ccc;
    }

    .hero {
      position: relative;
      min-height: 720px;
      padding-bottom: 50px;
      background: url('https://www.sunshinewashes.com/wp-content/uploads/Website-hero-2.png') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    }

    .sunshine-elementor-area:has(.hero) {
      margin-top: -115px;
    }

    .header {
      position: absolute;
      top: 20px; /* Bring menu + logo down by 20px */
      left: 0;
      z-index: 9999;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      width: 100%;
    }

    .logo img {
      height: 75px;
    }

    .nav-links {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .nav-pill {
      background-color: transparent;
      color: #fff;
      padding: 10px 15px;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      font-family: 'Luckiest Guy', display;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      letter-spacing: 1px;
      transition: color 0.2s;
    }

    .nav-pill:hover {
      color: #F8C325;
      background-color: transparent;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      width: 100%;
      padding: 140px 40px 60px 40px; /* Extra top padding to push text below header */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .hero h1 {
      font-family: "DM Sans", sans-serif;
      font-style: normal;
      font-weight: 900;
      color: rgb(255, 255, 255);
      font-size: 88px;
      line-height: 88px;
      max-width: 600px;
      margin-bottom: 40px;
    }
    .hero-title-main {
      font-family: "Geomanist", "DM Sans", sans-serif;
      font-style: italic;
      font-weight: 900;
      color: #ffffff;
      font-size: 72px;
      line-height: 1.1;
      margin-bottom: 5px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-title-sub {
      font-family: "Geomanist", "DM Sans", sans-serif;
      font-style: italic;
      font-weight: 800;
      color: #fae37d; /* Light yellow */
      font-size: 42px;
      margin-bottom: 30px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }


    .zip-box {
      background: #333333;
      border-radius: 30px;
      /* Fully rounded like a pill */
      padding: 5px 5px 5px 20px;
      /* Asymmetric padding to fit button */
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
      position: relative;
    }

    .zip-input {
      background: transparent;
      border: none;
      color: white;
      font-size: 16px;
      outline: none;
      width: 150px;
      font-family: 'Roboto', sans-serif;
    }

    .zip-input::placeholder {
      color: #aaa;
    }

    .zip-btn {
      background: var(--yellow);
      color: #000;
      border: none;
      border-radius: 30px;
      padding: 12px 24px;
      font-weight: 900;
      font-size: 16px;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }

    .zip-btn:hover {
      opacity: 0.9;
    }

    /* Search Results Dropdown */
    .search-results {
      position: absolute;
      top: calc(100% + 5px);
      left: 0;
      width: 100%;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      display: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 10;
      text-align: left;
    }

    .search-results.active {
      display: block;
    }

    .search-item {
      padding: 12px 15px;
      border-bottom: 1px solid #eee;
      color: #333;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      text-decoration: none;
    }

    .search-item:last-child {
      border-bottom: none;
    }

    .search-item:hover {
      background: #f5f5f5;
    }

    .search-item strong {
      color: #4a8dcb;
      font-size: 14px;
      margin-bottom: 3px;
    }

    .search-item span {
      font-size: 12px;
      color: #666;
    }

    .find-nearby {
      color: white;
      font-size: 14px;
      text-decoration: none;
      margin-left: 20px;
      display: block;
    }

    .find-nearby:hover {
      text-decoration: underline;
    }

    /* Section Headers */
    .section-title {
      text-align: center;
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 20px;
      margin-top: 60px;
    }

    /* Pricing Section */
    .pricing-title {
      font-family: 'Luckiest Guy', display;
      font-style: normal;
      font-weight: 500;
      color: rgb(0, 0, 0);
      text-align: center;
      font-size: 45px;
      margin-top: 60px;
      margin-bottom: 20px;
    }

    .sun-toggle-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
    }

    .sun-toggle {
      background: var(--yellow);
      border-radius: 30px;
      padding: 10px 30px;
      display: flex;
      align-items: center;
      gap: 15px;
      font-weight: 900;
      font-size: 20px;
      font-style: italic;
      cursor: pointer;
    }

    .sun-toggle-text-active {
      color: #518ecd;
      transition: 0.3s;
    }

    .sun-toggle-text-inactive {
      color: #ec7a69;
      opacity: 0.8;
      transition: 0.3s;
    }

    .is-yearly .sun-toggle-text-active {
      color: #ec7a69;
      opacity: 0.8;
    }

    .is-yearly .sun-toggle-text-inactive {
      color: #518ecd;
      opacity: 1;
    }

    .sun-switch {
      width: 60px;
      height: 30px;
      background: white;
      border-radius: 20px;
      position: relative;
      cursor: pointer;
      transition: background 0.3s;
    }

    .sun-switch::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 4px;
      width: 22px;
      height: 22px;
      background: #518ecd;
      border-radius: 50%;
      transition: left 0.3s, background 0.3s;
    }

    .is-yearly .sun-switch {
      background: #ec7a69;
    }

    .is-yearly .sun-switch::after {
      left: 34px;
      background: white;
    }

    /* Pricing Grid */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 60px;
    }

    .sun-card {
      border-radius: 20px;
      padding: 0;
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .sun-card-1 {
      background-color: #518ecd;
    }

    .sun-card-2 {
      background-color: #ec7a69;
    }

    .sun-card-3 {
      background-color: #fce270;
    }

    .sun-card-4 {
      background-color: #316d8a;
    }

    .sun-card-img {
      width: 100%;
      padding: 20px 20px 0 20px;
      margin-bottom: 10px;
    }

    .sun-price-box {
      margin: auto 20px 20px 20px;
      padding: 20px 10px;
      border-radius: 15px;
      color: white;
    }

    .sun-card-1 .sun-price-box {
      background-color: #3b6b9e;
    }

    .sun-card-2 .sun-price-box {
      background-color: #ba5748;
    }

    .sun-card-3 .sun-price-box {
      background-color: #c49929;
    }

    .sun-card-4 .sun-price-box {
      background-color: #214f66;
    }

    .sun-price-title {
      font-size: 18px;
      font-weight: 900;
      font-style: italic;
      margin-bottom: 5px;
    }

    .sun-price-amount {
      font-size: 55px;
      font-weight: 900;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      line-height: 1;
      font-family: Arial, sans-serif;
    }

    .sun-price-amount span.dollar {
      font-size: 25px;
      margin-top: 5px;
      margin-right: 5px;
    }

    .sun-price-amount span.cents {
      font-size: 20px;
      margin-top: 5px;
    }

    .sun-pill {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 5px 15px;
      font-size: 11px;
      display: inline-block;
      margin: 15px 0 10px 0;
      font-weight: 700;
      font-style: italic;
    }

    .pill-price {
      color: var(--yellow);
    }

    .sun-single {
      color: var(--yellow);
      font-size: 15px;
      font-weight: 900;
      font-style: italic;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }

    .sun-single span {
      font-size: 10px;
      font-weight: 700;
      color: inherit;
      text-align: left;
      line-height: 1.1;
      font-style: normal;
    }

    .sun-btn {
      margin: 0 20px 20px 20px;
      padding: 12px;
      border-radius: 10px;
      font-weight: 900;
      font-size: 16px;
      border: none;
      cursor: pointer;
    }

    .btn-coral {
      background-color: #f17b6a;
      color: white;
    }

    .btn-blue {
      background-color: #4b8cc9;
      color: white;
    }

    .card-list {
      color: var(--yellow);
      list-style: none;
      text-align: left;
      padding-left: 25px;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .card-list li {
      margin-bottom: 5px;
    }

    .card-list span {
      color: #ec7a69;
      margin-right: 5px;
    }

    .yearly-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--black);
      color: white;
      font-size: 11px;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 5px;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
    }

    .is-yearly .yearly-badge {
      opacity: 1;
    }

    .sun-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="30" viewBox="0 0 100 50"><path d="M25,10 C15,10 10,18 10,25 C10,32 15,40 25,40 C35,40 40,30 50,25 C60,20 65,10 75,10 C85,10 90,18 90,25 C90,32 85,40 75,40 C65,40 60,30 50,25 C40,20 35,10 25,10 Z" fill="none" stroke="rgba(255,255,255,0.07)" stroke-width="5"/></svg>');
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: 0;
    }

    .is-yearly .sun-card::before {
      opacity: 1;
    }

    .sun-card-img,
    .sun-price-box,
    .sun-btn,
    .card-list {
      position: relative;
      z-index: 1;
    }

    .yearly-content {
      display: none;
    }

    .is-yearly .monthly-content {
      display: none;
    }

    .is-yearly .yearly-content {
      display: block;
    }

    .sun-savings {
      color: var(--yellow);
      font-size: 15px;
      font-weight: 900;
      font-style: italic;
      margin-top: 20px;
      margin-bottom: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }

    .sun-savings span {
      font-size: 10px;
      font-weight: 700;
      color: white;
      text-align: left;
      line-height: 1.1;
      font-style: normal;
    }

    /* Mid Banner */
    .mid-banner {
      position: relative;
      width: 100%;
      max-width: 1350px;
      margin: 40px auto 0 auto;
      height: 700px;
      background: url('https://www.sunshinewashes.com/wp-content/uploads/WhatsApp-Image-2025-11-09-at-04.41.37-1-1080x675.jpeg') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .mid-banner::after {
      content: '';
      position: absolute;
      top: -250px;
      width: 700px;
      height: 700px;
      background: #ffcb03;
      border-radius: 50%;
      z-index: 1;
    }

    .banner-text {
      position: relative;
      z-index: 2;
      text-align: center;
      margin-top: 90px;
    }

    .banner-text h2 {
      font-family: 'Luckiest Guy', display;
      font-size: 65px;
      color: white;
      font-weight: 400;
      line-height: 0.95;
      text-shadow:
        -4px -4px 0 #f45b1c, 4px -4px 0 #f45b1c,
        -4px 4px 0 #f45b1c, 4px 4px 0 #f45b1c,
        -4px 0 0 #f45b1c, 4px 0 0 #f45b1c,
        0 -4px 0 #f45b1c, 0 4px 0 #f45b1c,
        0 8px 0px #f45b1c, -4px 8px 0 #f45b1c, 4px 8px 0 #f45b1c;
      letter-spacing: 1px;
    }

    .mid-banner .btn-yellow {
      position: absolute;
      bottom: 100px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      border-radius: 30px;
      padding: 12px 30px;
      font-size: 16px;
      font-weight: 900;
      border: none;
      background: var(--yellow);
      color: #000;
      cursor: pointer;
    }

    .mid-banner .btn-yellow:hover {
      opacity: 0.9;
    }

    /* Add Full Service Section */
    .add-full-service {
      background-color: #f17b6a;
      position: relative;
      padding: 50px 0;
      overflow: visible;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 0;
    }
    .fs-arrows {
      position: absolute;
      left: 10px;
      top: -80px;
      height: 280px;
      width: auto;
      z-index: 5;
    }
    .fs-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      position: relative;
      z-index: 10;
    }
    .fs-left {
      text-align: right;
    }
    .fs-title {
      font-family: 'Luckiest Guy', display;
      font-size: 65px;
      line-height: 0.9;
      color: #ffffff;
      margin: 0;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
      letter-spacing: 2px;
    }
    .fs-center {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .fs-price-oval {
      background-color: #ffffff;
      border-radius: 50%;
      width: 200px;
      height: 130px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 4px 6px 0px #b94b39;
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 90px;
      color: #000000;
      line-height: 1;
      padding-top: 5px;
    }
    .fs-price-oval .dollar {
      font-size: 50px;
      margin-right: 5px;
      margin-top: -20px;
    }
    .fs-right {
      color: #ffffff;
      font-family: 'Montserrat', sans-serif;
    }
    .fs-includes-title {
      font-size: 16px;
      font-weight: 800;
      margin: 0 0 2px 0 !important;
      color: #ffffff;
      letter-spacing: 1px;
    }
    .fs-includes-list {
      list-style: none;
      padding: 0;
      margin: -31px 0 0 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 40px;
      row-gap: 0px;
      font-style: italic;
    }
    .fs-includes-list li {
      position: relative;
      padding-left: 15px;
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .fs-includes-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background-color: #ffffff;
      border-radius: 50%;
    }

    @media (max-width: 992px) {
      .fs-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
      }
      .fs-left {
        text-align: center;
      }
      .fs-title {
        font-size: 50px;
      }
      .fs-price-oval {
        width: 180px;
        height: 130px;
        font-size: 80px;
      }
      .fs-price-oval .dollar {
        font-size: 40px;
        margin-top: -20px;
      }
      .fs-includes-list {
        grid-template-columns: 1fr;
      }
      .fs-arrows {
        display: none;
      }
    }

    /* Complimentary Amenities Section */
    .ca-section {
      background-color: #e5f4fa;
      text-align: center;
      padding: 60px 20px;
    }
    .ca-title {
      font-family: 'Luckiest Guy', display;
      color: #5190C1;
      text-transform: uppercase;
      font-size: 32px;
      font-weight: 500;
      margin-bottom: 5px;
      letter-spacing: 1px;
    }
    .ca-subtitle {
      font-family: 'Lobster', display;
      color: rgb(123, 211, 247);
      font-size: 45px;
      line-height: 45px;
      font-weight: 500;
      margin-top: -10px;
      margin-bottom: 40px;
      letter-spacing: 1px;
    }
    .ca-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .ca-box {
      background-color: #FDF4CD;
      border: 2px solid #D4A33B;
      border-radius: 25px;
      width: 180px;
      height: 180px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      padding: 25px 10px 20px 10px;
      box-sizing: border-box;
    }
    .ca-icon {
      max-width: 80px;
      max-height: 80px;
    }
    .ca-text {
      color: #F05D47;
      font-family: 'Luckiest Guy', display;
      text-transform: uppercase;
      font-size: 13px;
      text-align: center;
      line-height: 1.2;
    }

    @media (max-width: 768px) {
      .ca-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
      .ca-box {
        width: 100%;
        max-width: 380px;
        height: auto;
        padding: 30px 20px;
        gap: 20px;
      }
      .ca-icon {
        max-width: 100px;
        max-height: 100px;
      }
      .ca-text {
        font-size: 18px;
      }
      .ca-title {
        font-size: 28px;
        line-height: 1.2;
      }
      .ca-subtitle {
        font-size: 38px;
      }
    }

    /* Benefits Section */
    .benefits-title {
      font-family: 'Luckiest Guy', display;
      font-size: 45px;
      font-style: normal;
      font-weight: 500;
      text-align: center;
      margin-bottom: 30px;
      color: #000;
    }

    .benefits-banner-black {
      background-color: #111;
      border-radius: 12px;
      padding: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      color: white;
    }

    .benefits-banner-black p {
      font-family: "DM Sans", sans-serif;
      font-size: 16px;
      line-height: 1.5;
      margin: 0;
    }

    .benefits-banner-black strong {
      font-weight: 800;
    }

    .benefits-banner-btn {
      border: 1px solid white;
      background: transparent;
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      white-space: nowrap;
      margin-left: 20px;
    }

    .benefits-banner-btn:hover {
      background: white;
      color: black;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 80px;
    }

    .benefit-card {
      position: relative;
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      background: #333;
    }

    .benefit-card.purple-bg {
      background: #7A00E6;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .benefit-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }

    .benefit-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .benefit-text {
      position: absolute;
      bottom: 25px;
      left: 25px;
      color: white;
      font-size: 26px;
      font-weight: 600;
      font-family: "DM Sans", sans-serif;
      z-index: 2;
      line-height: 1.2;
    }

    .benefit-text span {
      font-weight: 400;
    }

    /* Merch Section New */
    .merch-section-wrapper {
      margin-top: 80px;
      margin-bottom: 80px;
    }

    .merch-section-new {
      display: flex;
      width: 100%;
      max-width: 1370px;
      margin: 0 auto;
      height: 570px;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      background: #005bb5;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .merch-left {
      width: 45%;
      height: 100%;
    }

    .merch-left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .merch-divider {
      position: absolute;
      left: 35%;
      top: 0;
      bottom: 0;
      width: 25%;
      height: 100%;
      z-index: 2;
    }

    .merch-divider svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .merch-right {
      width: 55%;
      background: #005bb5;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      z-index: 3;
      padding: 20px 40px;
    }

    .merch-mascot {
      width: 180px;
      margin-bottom: 20px;
    }

    .merch-right h2 {
      font-family: "DM Sans", sans-serif;
      font-size: 45px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 15px;
    }

    .merch-avail {
      font-family: "DM Sans", sans-serif;
      font-size: 16px;
      margin-bottom: 25px;
    }

    .merch-right .btn-yellow {
      background: #ffcb03;
      color: black;
      font-weight: 900;
      padding: 15px 35px;
      border-radius: 30px;
      border: none;
      font-size: 16px;
      cursor: pointer;
      margin-bottom: 20px;
      transition: all 0.2s ease;
    }

    .merch-right .btn-yellow:hover {
      transform: scale(1.05);
    }

    .merch-link {
      color: white;
      text-decoration: none;
      font-size: 13px;
      font-family: "DM Sans", sans-serif;
      font-style: italic;
    }

    /* Testimonials */
    .testimonials {
      background: linear-gradient(135deg, #001f5b, #004b93);
      padding: 100px 20px;
      margin: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .test-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      align-items: center;
    }

    @media (min-width: 992px) {
      .test-container {
        grid-template-columns: 1fr 1.3fr;
        gap: 80px;
      }
    }

    .test-left {
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .test-left h2 {
      font-family: 'DM Sans', sans-serif;
      font-size: 45px;
      font-weight: 900;
      margin-bottom: 25px;
      color: #ffcb03;
      line-height: 1.1;
      letter-spacing: -1px;
    }

    .test-left h3 {
      font-family: 'DM Sans', sans-serif;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #ffffff;
    }

    .test-left p {
      font-size: 16px;
      max-width: 450px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 30px;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.1);
      padding: 12px 25px;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(5px);
    }

    .trust-badge .stars {
      color: #ffcb03;
      font-size: 22px;
      letter-spacing: 2px;
    }

    .trust-badge .rating {
      font-weight: 700;
      font-size: 15px;
      font-family: 'DM Sans', sans-serif;
    }

    .test-right {
      display: flex;
      flex-direction: column;
      gap: 25px;
      transition: opacity 0.8s ease, transform 0.8s ease;
      transform: translateY(0);
      min-height: 450px;
      position: relative;
    }

    .test-right.fade-out {
      opacity: 0;
      transform: translateY(20px);
    }

    .review-card {
      background: white;
      padding: 25px;
      border-radius: 12px;
      width: 100%;
      max-width: 480px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      margin-left: auto;
      margin-right: 0;
    }

    .review-card:nth-child(even) {
      margin-right: 50px;
      margin-left: auto;
    }

    .review-card p {
      font-size: 14px;
      margin-bottom: 15px;
      font-weight: 500;
      color: #333;
      line-height: 1.5;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 800;
      color: #001f5b;
      font-family: 'DM Sans', sans-serif;
    }

    .author-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #ffcb03;
    }

    /* Footer */
    .footer {
      background: var(--black);
      color: white;
      padding: 50px 0;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      font-size: 12px;
    }

    .footer-links a {
      color: white;
    }
  
/* Location Finder Styles */
.loc-finder-wrapper {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .loc-finder-wrapper {
    flex-direction: row;
    height: 700px;
  }
}

.loc-sidebar {
  flex: 1;
  max-width: 100%;
  background: #f7f7f7;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .loc-sidebar {
    max-width: 400px;
  }
}

.loc-search-box {
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  gap: 10px;
}

.loc-search-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.loc-gps-btn {
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.loc-list {
  flex: 1;
  overflow-y: auto;
}

.loc-item {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.3s;
}

.loc-item:hover {
  background: #fff;
}

.loc-item h3 {
  margin-bottom: 8px;
  color: var(--black);
}

.loc-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.loc-map-container {
  flex: 2;
  background: #eaeaea;
  min-height: 400px;
  position: relative;
}

/* Sunshine Style Locations Page */
.breadcrumbs-container {
  background-color: #f6f7f9;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
.breadcrumbs-container .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
}
.breadcrumbs-container a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumbs-container .separator {
  color: #888;
}

.locations-page-bg {
  background-color: #f6f7f9;
  padding: 40px 0 80px 0;
  min-height: calc(100vh - 300px);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1400px;
}
@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.loc-sidebar-panel {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #ecedf2;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .loc-sidebar-panel {
    padding: 40px;
  }
}

.loc-sidebar-panel h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
  font-family: 'DM Sans', sans-serif;
}

@media (min-width: 768px) {
  .loc-sidebar-panel h1 {
    font-size: 2.8rem;
  }
}

.loc-desc {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.5;
}

.loc-search-label {
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.loc-search-box-v2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .loc-search-box-v2 {
    flex-direction: row;
  }
}
.loc-search-input-v2 {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #d5d8e2;
  border-radius: 8px;
  font-size: 1rem;
}
.loc-btn-search {
  background-color: #ffc400;
  color: #000;
  font-weight: 700;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
  white-space: nowrap;
}
.loc-btn-search:hover {
  background-color: #e6b000;
}

.loc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.loc-filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #00843d;
  background: transparent;
  color: #00843d;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.loc-filter-btn.active, .loc-filter-btn:hover {
  background: #00ad21;
  color: white;
  border-color: #00ad21;
}

.loc-results-count {
  font-size: 1rem;
  color: #666;
  padding-bottom: 20px;
  border-bottom: 1px solid #d5d8e2;
  margin-bottom: 20px;
}

.loc-list-v2 {
  display: flex;
  flex-direction: column;
  height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}
@media (min-width: 1024px) {
  .loc-list-v2 {
    height: 500px;
  }
}
.loc-list-v2::-webkit-scrollbar {
  width: 6px;
}
.loc-list-v2::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.loc-card {
  padding: 24px 0;
  border-bottom: 1px solid #d5d8e2;
}
.loc-card:first-child {
  padding-top: 0;
}

.loc-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.loc-badge {
  background-color: #ffc400;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.loc-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.loc-info-box {
  background: #f6f7f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.loc-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}
.loc-icon-circle {
  width: 32px;
  height: 32px;
  background-color: rgba(0, 173, 33, 0.1);
  color: #00ad21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 600px) {
  .loc-actions {
    flex-direction: row;
  }
}
.loc-btn-outline, .loc-btn-solid {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.loc-btn-outline {
  border: 1px solid #d5d8e2;
  color: #000;
  background: white;
}
.loc-btn-outline:hover {
  background: #f6f7f9;
}
.loc-btn-solid {
  background: #00843d;
  color: white;
  border: 1px solid #00843d;
}
.loc-btn-solid:hover {
  background: #006b32;
}

.loc-map-panel {
  border-radius: 12px;
  border: 1px solid #d5d8e2;
  overflow: hidden;
  height: 400px;
  position: relative;
}

@media (min-width: 1024px) {
  .loc-map-panel {
    height: 880px;
  }
}
.map-placeholder {
  width: 100%;
  height: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 12px;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding: 12px 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #eee;
}

.nav-dropdown-content::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

.nav-dropdown-content a {
  color: #444;
  padding: 12px 24px;
  text-decoration: none;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.nav-dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #00ad21;
  padding-left: 28px;
}

.nav-dropdown:hover .nav-dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

    /* About Us Hero Banner */
    .about-hero {
      background: linear-gradient(180deg, #4b8cca 0%, rgba(123, 211, 247, 0) 100%), url('https://www.sunshinewashes.com/wp-content/uploads/about-us-banner.jpg') center/cover no-repeat;
      min-height: 460px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 175px 20px 60px;
      margin-top: -115px;
    }
    
    .about-hero img.sun-logo {
      width: 180px;
      margin-bottom: 20px;
      border-radius: 50%;
      border: 4px solid #000;
      background: #4b8cca; /* Just in case it's transparent, it matches */
    }
    
    .about-hero h1.about-title {
      font-family: 'Luckiest Guy', display;
      font-style: normal;
      font-weight: 500;
      color: #ffffff;
      font-size: 100px;
      line-height: 100px;
      margin: 0;
    }

    .about-tagline {
      text-align: center;
      padding: 40px 20px 20px;
    }

    .about-tagline h2 {
      font-family: 'Luckiest Guy', display;
      color: #4A8DCB;
      font-size: 70px;
      margin: 0;
      line-height: 1;
      text-transform: uppercase;
    }

    .about-tagline h3 {
      font-family: 'Geomanist Medium', 'Luckiest Guy', sans-serif;
      font-style: italic;
      color: #F26F5B;
      font-size: 48px;
      margin: 10px 0 0 0;
    }
    
    @media (max-width: 768px) {
      .about-hero {
        min-height: 380px;
      }
      .about-hero h1.about-title {
        font-size: 60px;
      }
      .about-hero img.sun-logo {
        width: 120px;
      }
      .about-tagline h2 {
        font-size: 48px;
      }
      .about-tagline h3 {
        font-size: 30px;
      }
    }

    .btn-locations {
      border: 2px solid transparent; /* To prevent jitter on hover */
    }
    .btn-locations:hover {
      background-color: #4B8CCA !important;
      letter-spacing: 2px !important;
      border-color: #4B8CCA !important;
    }

/* =======================================================
   Mobile Responsiveness
   ======================================================= */
@media (max-width: 992px) {
  /* Header */
  .header {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
  }
  .header .logo img {
    height: 50px;
  }
  .nav-links {
    display: none; /* Hidden by default on mobile, shown via overlay */
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    padding: 14px 10px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1100;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* Mobile Backdrop */
  .mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Drawer Overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .mobile-nav-overlay.open {
    right: 0;
  }
  
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
  }
  .mobile-nav-header img {
    height: 40px;
  }
  .mobile-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #333;
    cursor: pointer;
  }

  .mobile-nav-content {
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .mobile-link, .mobile-dropdown-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    background: #f9f9f9;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-link:hover, .mobile-dropdown-btn:hover {
    background: #e3f2fd;
    color: #008f4c;
  }
  .mobile-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px 15px 5px 30px;
  }
  .mobile-dropdown.active .mobile-dropdown-content {
    display: flex;
  }
  .mobile-dropdown.active .arrow {
    transform: rotate(180deg);
  }
  
  .mobile-dropdown-content a {
    color: #555;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-dropdown-content a:hover {
    color: #008f4c;
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero Section */
  .hero {
    min-height: auto !important;
    padding-bottom: 40px !important;
  }
  .hero-usf-logo {
    max-height: 70px !important;
  }
  .hero-title-main {
    font-size: 45px !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }
  .hero-title-sub {
    font-size: 14px !important;
    margin-bottom: 15px !important;
  }
  .hero-content {
    padding: 100px 20px 30px 20px !important;
  }
  
  /* Zip Box */
  .zip-box {
    flex-direction: row !important;
    align-items: center !important;
    background: #333333 !important;
    padding: 5px 5px 5px 15px !important;
    border-radius: 30px !important;
    width: 100% !important;
    max-width: 340px !important;
  }
  .zip-input {
    background: transparent !important;
    color: white !important;
    padding: 8px 5px !important;
    border-radius: 0 !important;
    width: auto !important;
    flex: 1;
    margin-bottom: 0 !important;
    text-align: left !important;
    font-size: 14px !important;
  }
  .zip-input::placeholder {
    color: #aaa !important;
  }
  .zip-btn {
    width: auto !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    border-radius: 30px !important;
    white-space: nowrap;
  }
  
  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px;
  }
  .pricing-title {
    font-size: 32px !important;
  }
  
  /* Mid Banner */
  .mid-banner {
    height: 500px !important;
    margin-top: 40px !important;
    background-position: center bottom !important;
  }
  .mid-banner::after {
    width: 800px !important;
    height: 800px !important;
    top: -600px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .banner-text {
    margin-top: 50px !important;
  }
  .banner-text h2 {
    font-size: 38px !important;
    text-shadow:
      -2px -2px 0 #f45b1c, 2px -2px 0 #f45b1c,
      -2px 2px 0 #f45b1c, 2px 2px 0 #f45b1c,
      -2px 0 0 #f45b1c, 2px 0 0 #f45b1c,
      0 -2px 0 #f45b1c, 0 2px 0 #f45b1c,
      0 4px 0px #f45b1c, -2px 4px 0 #f45b1c, 2px 4px 0 #f45b1c !important;
  }
  .mid-banner .btn-yellow {
    bottom: 30px !important;
    font-size: 14px !important;
    padding: 10px 24px !important;
  }
  
  /* Benefits */
  .benefits-banner-black {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .benefits-banner-btn {
    margin-left: 0 !important;
  }
  .benefits-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Merch */
  .merch-section-new {
    flex-direction: column;
    height: auto !important;
  }
  .merch-left, .merch-right {
    width: 100% !important;
  }
  .merch-left {
    height: 300px;
  }
  .merch-divider {
    display: none;
  }
  .merch-right {
    padding: 40px 20px !important;
  }
  
  /* Testimonials */
  .testimonials {
    grid-template-columns: 1fr !important;
    padding: 40px 20px !important;
  }
  .test-left {
    padding-left: 0 !important;
    text-align: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .test-right {
    padding-right: 0 !important;
    align-items: center;
  }
  .review-card {
    width: 100% !important;
  }
  .review-card:nth-child(2) {
    margin-right: 0 !important;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Hide menu toggle on desktop */
@media (min-width: 993px) {
  .menu-toggle {
    display: none !important;
  }
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* New Footer */
.footer-new {
  background: #fbf5bb;
  color: #000;
  padding: 60px 0 0 0;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  margin-top: 50px;
}
.footer-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-logo {
  max-width: 250px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
  text-align: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.fb-icon { background: #3b5998; }
.ig-icon { background: #e1306c; }

.footer-col-2 h3, .footer-col-3 h3, .footer-col-4 h3 {
  font-family: 'Luckiest Guy', display;
  font-style: normal;
  font-weight: 500;
  color: rgb(74, 141, 203);
  font-size: 35px;
  line-height: 35px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.footer-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-new ul li {
  margin-bottom: 12px;
}
.footer-new ul li a {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
}
.footer-new ul li a:hover {
  color: #333;
}
.footer-col-4 p {
  color: #000;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 600;
}
.btn-locations-footer {
  display: inline-block;
  background: #f45b1c;
  color: white;
  font-family: 'Luckiest Guy', display;
  font-size: 24px;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  margin-top: 15px;
  letter-spacing: 1px;
}
.btn-locations-footer:hover {
  opacity: 0.9;
}
.footer-bottom {
  background: #F9DF3B;
  text-align: center;
  padding: 15px 0;
  font-size: 12px;
  color: #000;
  border-top: 1px solid #d4c57d;
}
.floating-widgets {
  position: fixed;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  z-index: 9999;
}
.google-review-widget {
  background: white;
  color: black;
  padding: 10px 12px;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 4px 15px rgba(0,0,0,0.15);
  text-align: center;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}
.google-review-widget .rating {
  font-size: 22px;
  color: #000;
  line-height: 1;
}
.google-review-widget .star-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.google-review-widget .review-divider {
  width: 100%;
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 2px 0;
}
.google-review-widget .g-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .footer-new {
    background: #fbf5bb; /* Pale yellow from screenshot */
    color: #000;
  }
  .footer-new ul li a {
    color: #000;
  }
  .footer-new ul li a:hover {
    color: #333;
  }
  .footer-col-4 p {
    color: #000;
  }
  .footer-col-2 h3, .footer-col-3 h3, .footer-col-4 h3 {
    margin-bottom: 10px;
  }
  .footer-new-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    display: none;
  }
  .footer-bottom {
    background: #fbf5bb;
    color: #000;
    border-top: 1px solid #e5db93;
  }
  .floating-widgets {
    right: 10px;
    bottom: 10px;
    transform: scale(0.9);
    transform-origin: bottom right;
  }
}

/* Mobile Footer Specifics */
.footer-mobile {
  display: none;
  padding: 0 20px 40px 20px;
}
.footer-mobile-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  line-height: 1.2;
}
.footer-mobile-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.mob-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #333;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}
.mob-contact-us {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 16px;
  font-style: italic;
  text-decoration: none;
  margin-bottom: 20px;
}
.mob-version {
  color: #888;
  font-size: 11px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.mob-version strong {
  font-size: 13px;
  letter-spacing: 1px;
  color: #aaa;
}
.mob-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mob-links li {
  margin-bottom: 18px;
}
.mob-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.mob-links-second {
  margin-top: 40px;
}

@media (max-width: 992px) {
  .footer-mobile {
    display: none !important;
  }
  .footer-bottom {
    margin-top: 0;
  }
}

  .card-top-title {
    width: 90%;
    margin: 0 auto 5px auto;
    object-fit: contain;
  }
  .card-subtitle {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  .sun-card-1 .card-subtitle { color: #ffca08; }
  .sun-card-2 .card-subtitle { color: #ffca08; }
  .sun-card-3 .card-subtitle { color: #F0624E; }
  
  .card-extra-text {
    color: #1E88E5;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

/* FAQ Page Styles */
.faq-page-wrapper {
    background-color: #f8f9fa; /* Slightly lighter gray */
    padding-bottom: 60px;
    font-family: 'Roboto', sans-serif;
}

.faq-hero-bg {
    background: linear-gradient(135deg, #518ecd 0%, #316d8a 100%);
    width: 100%;
    margin-top: -115px; /* Pull up under header */
    padding-top: 155px;
    padding-bottom: 40px;
    border-radius: 0 0 40px 40px; /* Optional: smooth bottom curve */
}

.faq-hero-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 50px;
    gap: 40px;
}

.faq-hero-text {
    flex: 1;
    text-align: left;
}

.faq-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.1;
}

.faq-hero-subtitle {
    font-size: 18px;
    color: #f0f0f0;
    margin: 0;
    line-height: 1.5;
}

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

.faq-hero-image-wrapper {
    flex: 0 0 300px;
    max-width: 300px;
    animation: fadeInRight 1s ease-out forwards;
}

.faq-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.faq-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.faq-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    text-align: center;
    margin: 60px 0 30px;
    color: #000;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: background-color 0.2s;
    font-family: 'Roboto', sans-serif;
}

.faq-accordion-toggle:hover {
    background-color: #fcfcfc;
}

.faq-question {
    padding-right: 20px;
}

.faq-icon-wrapper {
    background-color: #fbd635;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .faq-hero-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    .faq-hero-text {
        text-align: center;
    }
    .faq-hero-title {
        font-size: 36px;
        text-align: center;
    }
    .faq-hero-subtitle {
        text-align: center;
    }
    .faq-section-title {
        font-size: 28px;
    }
    .faq-accordion-toggle {
        font-size: 16px;
        padding: 20px;
    }
    .faq-answer-inner {
        font-size: 15px;
        padding: 0 20px 20px 20px;
    }
}

/* =========================================
   Blog Page Styles
   ========================================= */

.blog-page-wrapper {
  background-color: #f6f7f9;
  min-height: calc(100vh - 300px);
}

.blog-hero-bg {
  background: linear-gradient(135deg, #00843d 0%, #00ad21 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.blog-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.blog-hero-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.blog-content-section {
  padding: 60px 0 100px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.blog-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: 'DM Sans', sans-serif;
}

.blog-card-excerpt {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

.blog-card-link {
  color: #00843d;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.blog-card-link:hover {
  color: #ffc400;
}

.blog-load-more {
  text-align: center;
  margin-top: 60px;
}

.btn-load-more {
  background: #ffc400;
  color: #000;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-load-more:hover {
  background: #e6b000;
  transform: scale(1.02);
}

/* =========================================
   Privacy Policy Page
   ========================================= */

.privacy-page-wrapper {
    background-color: #ffffff;
}

.privacy-hero-section-1 {
    background-color: #4A8DCB;
    width: 100%;
    margin-top: -115px; /* Pull up under header */
    padding-top: 250px;
    padding-bottom: 120px;
    position: relative;
}
.privacy-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 5;
}
.privacy-hero-title {
    font-family: 'Luckiest Guy', display;
    font-style: normal;
    font-weight: 500;
    color: rgb(249, 223, 59);
    font-size: 100px;
    line-height: 100px;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-shadow: none;
}
.privacy-wave-1 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiM3QkQzRjciPjxwYXRoIGQ9Ik0wIDB2MTAwYzIwIDE3LjMgNDAgMjkuNTEgODAgMjkuNTEgNTEuNzkgMCA3NC42OS00OC41NyAxNTEuNzUtNDguNTcgNzMuNzIgMCA5MSA1NC44OCAxOTEuNTYgNTQuODhDNTQzLjk1IDEzNS44IDU1NCAxNCA2NjUuNjkgMTRjMTA5LjQ2IDAgOTguODUgODcgMTg4LjIgODcgNzAuMzcgMCA2OS44MS0zMy43MyAxMTUuNi0zMy43MyA1NS44NSAwIDYyIDM5LjYyIDExNS42IDM5LjYyIDU4LjA4IDAgNTcuNTItNDYuNTkgMTE1LTQ2LjU5IDM5LjggMCA2MCAyMi40OCA3OS44OSAzOS42OVYweiIvPjwvZz48L3N2Zz4=');
    background-size: 100% 150px;
    z-index: 1;
    transform: scale(1, -1);
}
.privacy-hero-section-2 {
    background-color: #7BD3F7;
    width: 100%;
    height: 150px;
    position: relative;
    margin-top: -1px;
}
.privacy-wave-2 {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNmZmZmZmYiPjxwYXRoIGQ9Ik0wIDB2MTAwYzIwIDE3LjMgNDAgMjkuNTEgODAgMjkuNTEgNTEuNzkgMCA3NC42OS00OC41NyAxNTEuNzUtNDguNTcgNzMuNzIgMCA5MSA1NC44OCAxOTEuNTYgNTQuODhDNTQzLjk1IDEzNS44IDU1NCAxNCA2NjUuNjkgMTRjMTA5LjQ2IDAgOTguODUgODcgMTg4LjIgODcgNzAuMzcgMCA2OS44MS0zMy43MyAxMTUuNi0zMy43MyA1NS44NSAwIDYyIDM5LjYyIDExNS42IDM5LjYyIDU4LjA4IDAgNTcuNTItNDYuNTkgMTE1LTQ2LjU5IDM5LjggMCA2MCAyMi40OCA3OS44OSAzOS42OVYweiIvPjwvZz48L3N2Zz4=');
    background-size: 100% 150px;
    z-index: 1;
    transform: scale(-1, -1);
}

.privacy-content-container {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.privacy-h2 {
    font-family: 'Luckiest Guy', display;
    color: #4A8DCB;
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.privacy-h3 {
    font-family: 'Lobster', display;
    color: #ffcb05;
    font-size: 34px;
    margin-top: 30px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.3);
}

.privacy-content-container p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

@media (max-width: 980px) {
    .privacy-hero-section-1 {
        padding-top: 200px;
        padding-bottom: 100px;
    }
    .privacy-wave-1, .privacy-wave-2 {
        height: 100px;
        background-size: 100% 100px;
    }
    .privacy-hero-section-2 {
        height: 100px;
    }
    .privacy-hero-title {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .privacy-hero-section-1 {
        padding-top: 150px;
        padding-bottom: 80px;
    }
    .privacy-wave-1, .privacy-wave-2 {
        height: 50px;
        background-size: 100% 50px;
    }
    .privacy-hero-section-2 {
        height: 50px;
    }
    .privacy-hero-title {
        font-size: 60px;
    }
    .privacy-h2 {
        font-size: 30px;
    }
    .privacy-h3 {
        font-size: 28px;
    }
}

/* Custom Gradient & Variables from User */
:root {
    --primary-blue: #4b8ecb;
    --primary-red: #f3705b;
    --primary-yellow: #f9df3b;
    --light-blue: #7bd3f7;
    --pastel-blue: #eefafe;
    --pastel-yellow: #fbf5bb;
    --primary-blue-rgb: 75, 142, 203;
    --primary-red-rgb: 243, 112, 91;
    --primary-yellow-rgb: 249, 223, 59;
    --light-blue-rgb: 123, 211, 247;
}
.has-gradient.bottom-to-top.primary-yellow:after {
    background: linear-gradient(0deg, var(--primary-yellow) 0%, rgba(var(--primary-yellow-rgb), 0) 100%);
}

.has-gradient.bottom-to-top:after {
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.has-gradient.bottom-to-top:after, .has-gradient.top-to-bottom:before {
    content: '';
    width: 100%;
    height: 500px;
    position: absolute;
    display: block;
    z-index: 2 !important;
}

.hero h1 {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    color: rgb(255, 255, 255);
    font-size: 53px;
    line-height: 57px;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.hero-title-main, .about-title, .benefits-title, .membership-title {
    color: #ffffff !important;
}

.hero-title-sub {
    font-family: "Geomanist", "DM Sans", sans-serif;
    font-style: italic;
    font-weight: 800;
    color: #fae37d !important;
    font-size: 17px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mascot Animation */
@keyframes smoothFloatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}
.mascot-anim {
  animation: smoothFloatUpDown 4s ease-in-out infinite;
}
