:root {
      --hdr-bg-primary: #0f172a;
      --hdr-bg-secondary: #1e293b;
      --hdr-accent-primary: #ec4899;
      --hdr-accent-secondary: #06b6d4;
      --hdr-accent-tertiary: #8b5cf6;
      --hdr-accent-gold: #fbbf24;
      --hdr-text-primary: #f1f5f9;
      --hdr-text-secondary: #cbd5e1;
      --hdr-border-color: #ec4899;
      --hdr-shadow: 0 8px 32px rgba(236, 72, 153, 0.15);
      --hdr-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: linear-gradient(135deg, #0f172a 0%, #1a1f35 100%);
      font-family: 'Segoe UI', 'Roboto', 'Helvetica', Arial, sans-serif;
      color: var(--hdr-text-primary);
    }

    #hdr-outer {
      background: linear-gradient(90deg, var(--hdr-bg-primary) 0%, var(--hdr-bg-secondary) 50%, var(--hdr-bg-primary) 100%);
      border-top: 4px solid var(--hdr-border-color);
      border-bottom: 1px solid rgba(236, 72, 153, 0.2);
      position: relative;
      box-shadow: var(--hdr-shadow);
      overflow: hidden;
    }

    #hdr-outer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent);
      z-index: 1;
    }

    #hdr-deco-left {
      position: absolute;
      top: 0;
      left: 0;
      width: 120px;
      height: 100%;
      background: linear-gradient(135deg, var(--hdr-accent-primary) 0%, var(--hdr-accent-secondary) 100%);
      clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
      z-index: 2;
      opacity: 0.9;
    }

    #hdr-deco-right {
      position: absolute;
      top: 0;
      right: 0;
      width: 120px;
      height: 100%;
      background: linear-gradient(-135deg, var(--hdr-accent-tertiary) 0%, var(--hdr-accent-gold) 100%);
      clip-path: polygon(100% 0, 100% 100%, 50% 100%, 100% 0);
      z-index: 2;
      opacity: 0.9;
    }

    #hdr-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      min-height: 100px;
      z-index: 3;
    }

    #hdr-brand {
      display: flex;
      flex-direction: column;
      gap: 4px;
      user-select: none;
      z-index: 3;
      flex-shrink: 0;
    }

    #hdr-title {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      line-height: 1.1;
      background: linear-gradient(90deg, var(--hdr-accent-primary) 0%, var(--hdr-accent-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    }

    #hdr-highlight {
      color: var(--hdr-accent-gold);
      font-weight: 900;
      letter-spacing: 2px;
      text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
      font-size: 1.1em;
    }

    #hdr-slogan {
      font-size: 0.9rem;
      color: var(--hdr-text-secondary);
      letter-spacing: 0.3rem;
      font-weight: 300;
      text-transform: uppercase;
      margin-top: 2px;
      opacity: 0.85;
    }

    #hdr-nav-list {
      display: flex;
      gap: 50px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    #hdr-nav-link {
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--hdr-text-primary);
      position: relative;
      transition: var(--hdr-transition);
      padding-bottom: 8px;
      display: inline-block;
    }

    #hdr-nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--hdr-accent-primary), var(--hdr-accent-secondary));
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 2px;
    }

    #hdr-nav-link:hover,
    #hdr-nav-link.active {
      color: var(--hdr-accent-primary);
    }

    #hdr-nav-link:hover::after,
    #hdr-nav-link.active::after {
      width: 100%;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      #hdr-inner {
        padding: 0 30px;
        min-height: 95px;
      }

      #hdr-title {
        font-size: 2rem;
      }

      #hdr-nav-list {
        gap: 35px;
      }

      #hdr-nav-link {
        font-size: 0.95rem;
      }

      #hdr-deco-left,
      #hdr-deco-right {
        width: 100px;
      }
    }

    @media (max-width: 768px) {
      #hdr-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 25px;
        min-height: auto;
        gap: 15px;
      }

      #hdr-title {
        font-size: 1.7rem;
        letter-spacing: 1px;
      }

      #hdr-highlight {
        font-size: 1em;
      }

      #hdr-slogan {
        font-size: 0.8rem;
        letter-spacing: 0.2rem;
      }

      #hdr-nav-list {
        gap: 25px;
        width: 100%;
        flex-wrap: wrap;
      }

      #hdr-nav-link {
        font-size: 0.9rem;
      }

      #hdr-deco-left,
      #hdr-deco-right {
        width: 80px;
      }
    }

    @media (max-width: 480px) {
      #hdr-outer {
        border-top: 3px solid var(--hdr-border-color);
      }

      #hdr-inner {
        padding: 15px 15px;
        gap: 12px;
      }

      #hdr-title {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
      }

      #hdr-highlight {
        font-size: 0.95em;
        letter-spacing: 1px;
      }

      #hdr-slogan {
        font-size: 0.75rem;
        letter-spacing: 0.15rem;
      }

      #hdr-nav-list {
        gap: 15px;
        flex-wrap: wrap;
      }

      #hdr-nav-link {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        padding-bottom: 6px;
      }

      #hdr-deco-left,
      #hdr-deco-right {
        width: 70px;
      }
    }

    @media (max-width: 360px) {
      #hdr-inner {
        padding: 12px 12px;
        gap: 10px;
      }

      #hdr-title {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
      }

      #hdr-nav-list {
        gap: 12px;
      }

      #hdr-nav-link {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
      }

      #hdr-deco-left,
      #hdr-deco-right {
        width: 60px;
      }
    }

    /* Smooth scrollbar for better UX */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(15, 23, 42, 0.5);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--hdr-accent-primary), var(--hdr-accent-secondary));
      border-radius: 4px;
    }


    /* =========footer====== */
      /* ============================================
           FOOTER CONTAINER & LAYOUT
           ============================================ */
        .footer-wrapper {
            background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(30, 30, 50, 0.95) 100%);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 105, 180, 0.2);
            padding: 3rem 2rem 2rem;
            margin-top: auto;
            position: relative;
            overflow: hidden;
        }

        .footer-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.5), transparent);
        }

        .footer-main-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        /* ============================================
           FOOTER SECTION STYLING
           ============================================ */
        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-section__title {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 1.2rem;
            color: #fff;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .footer-section__title--accent {
            color: #ff69b4;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .footer-section__subtitle {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        /* ============================================
           BRAND SECTION
           ============================================ */
        .footer-brand-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-brand-heading {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
        }

        .footer-location-block {
            background: rgba(255, 105, 180, 0.08);
            padding: 1.5rem;
            border-left: 3px solid #ff69b4;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .footer-location-block:hover {
            background: rgba(255, 105, 180, 0.12);
            transform: translateX(4px);
        }

        .footer-location-label {
            color: #ff69b4;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .footer-location-text {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-contact-item__icon {
            min-width: 4px;
            width: 4px;
            height: 4px;
            background: #ff69b4;
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .footer-contact-item__text {
            flex: 1;
            font-weight: 500;
        }

        .footer-contact-item__label {
            color: #ff69b4;
            font-weight: 700;
            display: block;
            margin-bottom: 0.2rem;
        }

        .footer-contact-item__link {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: all 0.3s ease;
            word-break: break-word;
        }

        .footer-contact-item__link:hover {
            color: #ff69b4;
        }

        /* ============================================
           CITY SELECTOR SECTION
           ============================================ */
        .footer-city-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-city-title {
            color: #ff69b4;
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-city-subtitle {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin-top: -0.5rem;
        }

        .footer-city-selector {
            padding: 0.75rem 1.2rem;
            background: #fff;
            border: 2px solid #ff69b4;
            border-radius: 4px;
            font-size: 0.95rem;
            color: #999;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff69b4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .footer-city-selector:hover {
            border-color: #ff69b4;
            background-color: rgba(255, 105, 180, 0.05);
        }

        .footer-city-selector:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
        }

        .footer-city-selector option {
            background: #1a1a2e;
            color: #fff;
            padding: 0.5rem;
        }

        /* ============================================
           FOOTER BOTTOM SECTION
           ============================================ */
        .footer-bottom-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.3), transparent);
            margin: 2rem 0;
        }

        .footer-links-section {
            margin-bottom: 2rem;
        }

        .footer-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            row-gap: 1rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff69b4;
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: #ff69b4;
        }

        .footer-link:hover::after {
            width: 100%;
        }

        .footer-links-divider {
            color: rgba(255, 105, 180, 0.4);
            user-select: none;
        }

        /* ============================================
           FOOTER COPYRIGHT SECTION
           ============================================ */
        .footer-copyright-section {
            text-align: center;
        }

        .footer-copyright-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .footer-copyright-text strong {
            color: #ff69b4;
            font-weight: 700;
        }

        /* ============================================
           RESPONSIVE DESIGN - TABLET (768px)
           ============================================ */
        @media (max-width: 768px) {
            .footer-wrapper {
                padding: 2.5rem 1.5rem 2rem;
            }

            .footer-main-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-section__title {
                font-size: 1.2rem;
            }

            .footer-links-container {
                gap: 1rem;
                row-gap: 0.8rem;
                justify-content: center;
            }

            .footer-link {
                font-size: 0.85rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE (480px)
           ============================================ */
        @media (max-width: 480px) {
            .footer-wrapper {
                padding: 2rem 1rem 1.5rem;
            }

            .footer-main-grid {
                gap: 2rem;
            }

            .footer-section__title {
                font-size: 1rem;
                letter-spacing: 0.5px;
            }

            .footer-section__subtitle {
                font-size: 0.65rem;
                letter-spacing: 2px;
            }

            .footer-brand-heading {
                gap: 0.3rem;
            }

            .footer-location-block {
                padding: 1.2rem;
            }

            .footer-contact-list {
                gap: 1rem;
            }

            .footer-contact-item {
                font-size: 0.9rem;
                gap: 0.8rem;
            }

            .footer-city-title {
                font-size: 1.1rem;
            }

            .footer-city-selector {
                padding: 0.65rem 1rem;
                font-size: 0.9rem;
            }

            .footer-bottom-divider {
                margin: 1.5rem 0;
            }

            .footer-links-container {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
                row-gap: 0.8rem;
            }

            .footer-links-divider {
                display: none;
            }

            .footer-link {
                font-size: 0.8rem;
            }

            .footer-copyright-text {
                font-size: 0.75rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - SMALL MOBILE (360px)
           ============================================ */
        @media (max-width: 360px) {
            .footer-wrapper {
                padding: 1.5rem 0.75rem 1rem;
            }

            .footer-section__title {
                font-size: 0.9rem;
            }

            .footer-location-text {
                font-size: 0.85rem;
            }

            .footer-contact-item__label {
                font-size: 0.8rem;
            }

            .footer-contact-item__link {
                font-size: 0.8rem;
            }

            .footer-city-selector {
                width: 100%;
            }

            .footer-copyright-text {
                font-size: 0.7rem;
                line-height: 1.4;
            }
        }

        /* ============================================
           ACCESSIBILITY & INTERACTION
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            .footer-location-block,
            .footer-link,
            .footer-city-selector {
                transition: none;
            }
        }

        @media (prefers-color-scheme: light) {
            .footer-wrapper {
                background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
                border-top-color: rgba(255, 105, 180, 0.3);
            }

            .footer-section__title,
            .footer-city-title {
                color: #1a1a2e;
            }

            .footer-copyright-text,
            .footer-contact-item,
            .footer-location-text,
            .footer-link {
                color: rgba(0, 0, 0, 0.7);
            }
        }
    /* =========footer====== */

    /* ===========banner=========== */
     /* ============================================
           BANNER MAIN CONTAINER
           ============================================ */
        .banner-container {
            position: relative;
            width: 100%;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        /* ============================================
           BANNER BACKGROUND ELEMENTS
           ============================================ */
        .banner-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .banner-background-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .banner-background-shape:nth-child(1) {
            top: -50px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #ff69b4 0%, transparent 70%);
            border-radius: 50%;
            animation-delay: 0s;
        }

        .banner-background-shape:nth-child(2) {
            bottom: -100px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #ff1493 0%, transparent 70%);
            border-radius: 50%;
            animation-delay: 2s;
        }

        .banner-background-shape:nth-child(3) {
            top: 50%;
            left: 10%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #ff69b4 0%, transparent 70%);
            border-radius: 50%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(90deg, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.5) 50%, rgba(26, 26, 46, 0.7) 100%); */
            z-index: 1;
        }

        /* ============================================
           BANNER CONTENT WRAPPER
           ============================================ */
        .banner-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* ============================================
           BANNER LEFT SECTION (TEXT)
           ============================================ */
        .banner-text-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            width: 100%;
            max-width: 700px;
            text-align: center;
            align-items: center;
        }

        .banner-pretitle {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ff69b4;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .banner-title {
            font-size: 3.5rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.1;
            color: #fff;
            text-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
        }

        .banner-title-accent {
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
        }

        .banner-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            max-width: 100%;
            font-weight: 400;
        }

        .banner-features-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.5rem 0;
            align-items: center;
        }

        .banner-feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .banner-feature-icon {
            width: 6px;
            height: 6px;
            background: #ff69b4;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .banner-cta-section {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            justify-content: center;
        }

        .banner-btn {
            padding: 1rem 2.5rem;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 1px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .banner-btn-primary {
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            color: #fff;
            box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
        }

        .banner-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 105, 180, 0.6);
        }

        .banner-btn-primary:active {
            transform: translateY(0);
        }

        .banner-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .banner-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #ff69b4;
            color: #ff69b4;
            transform: translateY(-2px);
        }

        /* ============================================
           BANNER DECORATIVE ELEMENTS
           ============================================ */
        .banner-decoration {
            position: absolute;
            pointer-events: none;
        }

        .banner-decoration-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, #ff69b4, transparent);
            opacity: 0.3;
        }

        .banner-decoration-line-top {
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
        }

        .banner-decoration-line-bottom {
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
        }

        /* ============================================
           RESPONSIVE DESIGN - TABLET (1024px)
           ============================================ */
        @media (max-width: 1024px) {
            .banner-container {
                min-height: 450px;
            }

            .banner-content-wrapper {
                padding: 2.5rem 2rem;
            }

            .banner-title {
                font-size: 2.8rem;
            }

            .banner-subtitle {
                font-size: 1.05rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - TABLET (768px)
           ============================================ */
        @media (max-width: 768px) {
            .banner-container {
                min-height: 550px;
            }

            .banner-content-wrapper {
                padding: 2rem 1.5rem;
            }

            .banner-text-section {
                max-width: 100%;
            }

            .banner-title {
                font-size: 2.2rem;
                text-align: center;
            }

            .banner-subtitle {
                max-width: 100%;
                text-align: center;
            }

            .banner-features-list {
                align-items: center;
            }

            .banner-cta-section {
                justify-content: center;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE (600px)
           ============================================ */
        @media (max-width: 600px) {
            .banner-container {
                min-height: 500px;
            }

            .banner-content-wrapper {
                padding: 2rem 1rem;
            }

            .banner-pretitle {
                font-size: 0.75rem;
                letter-spacing: 2px;
            }

            .banner-title {
                font-size: 1.8rem;
                letter-spacing: -0.5px;
            }

            .banner-subtitle {
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .banner-feature-item {
                font-size: 0.85rem;
            }

            .banner-btn {
                padding: 0.85rem 1.8rem;
                font-size: 0.85rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE (480px)
           ============================================ */
        @media (max-width: 480px) {
            .banner-container {
                min-height: 480px;
            }

            .banner-content-wrapper {
                padding: 1.5rem 1rem;
            }

            .banner-pretitle {
                font-size: 0.7rem;
                letter-spacing: 1.5px;
                margin-bottom: 0.3rem;
            }

            .banner-title {
                font-size: 1.5rem;
                line-height: 1.2;
            }

            .banner-subtitle {
                font-size: 0.9rem;
                margin-top: 0.5rem;
            }

            .banner-features-list {
                gap: 0.8rem;
                margin: 1rem 0;
            }

            .banner-feature-item {
                font-size: 0.8rem;
            }

            .banner-cta-section {
                flex-direction: column;
                gap: 0.8rem;
                margin-top: 1.5rem;
                width: 100%;
            }

            .banner-btn {
                width: 100%;
                padding: 0.8rem 1.5rem;
                font-size: 0.8rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - SMALL MOBILE (360px)
           ============================================ */
        @media (max-width: 360px) {
            .banner-container {
                min-height: 450px;
            }

            .banner-content-wrapper {
                padding: 1.2rem 0.8rem;
            }

            .banner-pretitle {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }

            .banner-title {
                font-size: 1.3rem;
                letter-spacing: -0.3px;
            }

            .banner-subtitle {
                font-size: 0.85rem;
            }

            .banner-features-list {
                display: none;
            }

            .banner-btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.75rem;
            }
        }

        /* ============================================
           ACCESSIBILITY & MOTION
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            .banner-background-shape,
            .banner-btn {
                animation: none !important;
            }

            .banner-btn {
                transition: none;
            }
        }

        @media (prefers-color-scheme: light) {
            .banner-container {
                background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #dcdcdc 100%);
            }

            .banner-overlay {
                background: linear-gradient(90deg, rgba(245, 245, 245, 0.3) 0%, rgba(245, 245, 245, 0.1) 50%, rgba(245, 245, 245, 0.3) 100%);
            }

            .banner-title,
            .banner-subtitle,
            .banner-feature-item {
                color: #1a1a2e;
            }
        }

        /* ============================================
           PRINT STYLES
           ============================================ */
        @media print {
            .banner-container {
                min-height: auto;
                height: 400px;
            }

            .banner-background-shape {
                display: none;
            }
        }
    /* ===========banner=========== */


     /* ============================================
           FAQ MAIN CONTAINER
           ============================================ */
        .faq-section-wrapper {
            width: 100%;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section-wrapper::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .faq-section-wrapper::after {
            content: '';
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 105, 180, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-30px);
            }
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ============================================
           FAQ HEADER SECTION
           ============================================ */
        .faq-header-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-header-pretitle {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ff69b4;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .faq-header-title {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(255, 105, 180, 0.2);
        }

        .faq-header-title-accent {
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-header-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ============================================
           FAQ ACCORDION CONTAINER
           ============================================ */
        .faq-accordion-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        /* ============================================
           FAQ ACCORDION ITEM
           ============================================ */
        .faq-accordion-item {
            background: linear-gradient(135deg, rgba(255, 105, 180, 0.08) 0%, rgba(255, 20, 147, 0.05) 100%);
            border: 1px solid rgba(255, 105, 180, 0.2);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-accordion-item:hover {
            border-color: rgba(255, 105, 180, 0.4);
            box-shadow: 0 8px 24px rgba(255, 105, 180, 0.15);
            transform: translateY(-2px);
        }

        .faq-accordion-item.active {
            background: linear-gradient(135deg, rgba(255, 105, 180, 0.15) 0%, rgba(255, 20, 147, 0.1) 100%);
            border-color: #ff69b4;
            box-shadow: 0 12px 30px rgba(255, 105, 180, 0.25);
        }

        /* ============================================
           FAQ ACCORDION HEADER
           ============================================ */
        .faq-accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 1rem;
        }

        .faq-accordion-header:focus {
            outline: 2px solid #ff69b4;
            outline-offset: -2px;
        }

        .faq-accordion-header:hover {
            background: rgba(255, 105, 180, 0.05);
        }

        .faq-accordion-item.active .faq-accordion-header {
            background: rgba(255, 105, 180, 0.1);
        }

        .faq-accordion-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
            font-weight: 700;
            color: #fff;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        .faq-accordion-number {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 32px;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            border-radius: 50%;
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .faq-accordion-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 24px;
            width: 24px;
            height: 24px;
            color: #ff69b4;
            font-size: 1.2rem;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
        }

        .faq-accordion-item.active .faq-accordion-icon {
            transform: rotate(180deg);
        }

        /* ============================================
           FAQ ACCORDION CONTENT
           ============================================ */
        .faq-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-accordion-item.active .faq-accordion-content {
            max-height: 500px;
        }

        .faq-accordion-body {
            padding: 0 1.5rem 1.5rem 3.5rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            font-size: 0.95rem;
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-accordion-body p {
            margin-bottom: 0.8rem;
        }

        .faq-accordion-body p:last-child {
            margin-bottom: 0;
        }

        .faq-accordion-body strong {
            color: #ff69b4;
            font-weight: 700;
        }

        .faq-accordion-body ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .faq-accordion-body li {
            margin-bottom: 0.5rem;
            list-style: none;
            position: relative;
            padding-left: 1rem;
        }

        .faq-accordion-body li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ff69b4;
            font-weight: 700;
        }

        /* ============================================
           FAQ SEARCH & FILTER
           ============================================ */
        .faq-search-section {
            margin-bottom: 3rem;
            position: relative;
        }

        .faq-search-wrapper {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .faq-search-input {
            width: 100%;
            padding: 1rem 1.5rem 1rem 3rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 105, 180, 0.3);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .faq-search-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .faq-search-input:focus {
            outline: none;
            border-color: #ff69b4;
            box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .faq-search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #ff69b4;
            font-size: 1.1rem;
        }

        /* ============================================
           FAQ CATEGORY FILTER
           ============================================ */
        .faq-category-section {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .faq-category-btn {
            padding: 0.6rem 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 105, 180, 0.3);
            border-radius: 25px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-category-btn:hover {
            border-color: #ff69b4;
            color: #ff69b4;
            transform: translateY(-2px);
        }

        .faq-category-btn.active {
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            border-color: #ff69b4;
            color: #fff;
        }

        /* ============================================
           FAQ EMPTY STATE
           ============================================ */
        .faq-empty-state {
            text-align: center;
            padding: 3rem 2rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .faq-empty-state-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .faq-empty-state-text {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .faq-empty-state-subtext {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ============================================
           FAQ CONTACT SECTION
           ============================================ */
        .faq-contact-section {
            margin-top: 4rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.05) 100%);
            border: 1px solid rgba(255, 105, 180, 0.3);
            border-radius: 12px;
            text-align: center;
        }

        .faq-contact-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.8rem;
        }

        .faq-contact-text {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .faq-contact-btn {
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            border: none;
            border-radius: 6px;
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq-contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
        }

        .faq-contact-btn:active {
            transform: translateY(0);
        }

        /* ============================================
           RESPONSIVE DESIGN - TABLET (768px)
           ============================================ */
        @media (max-width: 768px) {
            .faq-section-wrapper {
                padding: 3rem 1.5rem;
            }

            .faq-header-title {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .faq-header-description {
                font-size: 1rem;
            }

            .faq-accordion-wrapper {
                gap: 1rem;
            }

            .faq-accordion-header {
                padding: 1.2rem;
            }

            .faq-accordion-title {
                font-size: 0.95rem;
                gap: 0.8rem;
            }

            .faq-accordion-body {
                padding: 0 1.2rem 1.2rem 3rem;
                font-size: 0.9rem;
            }

            .faq-search-input {
                padding: 0.9rem 1.2rem 0.9rem 2.8rem;
                font-size: 0.95rem;
            }

            .faq-category-section {
                gap: 0.8rem;
                margin-bottom: 2.5rem;
            }

            .faq-category-btn {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }

            .faq-contact-section {
                padding: 2rem;
            }

            .faq-contact-title {
                font-size: 1.3rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE (600px)
           ============================================ */
        @media (max-width: 600px) {
            .faq-section-wrapper {
                padding: 2.5rem 1rem;
            }

            .faq-header-section {
                margin-bottom: 3rem;
            }

            .faq-header-pretitle {
                font-size: 0.75rem;
                letter-spacing: 2px;
            }

            .faq-header-title {
                font-size: 1.8rem;
                letter-spacing: -0.5px;
            }

            .faq-header-description {
                font-size: 0.95rem;
            }

            .faq-accordion-header {
                padding: 1.2rem 1rem;
            }

            .faq-accordion-title {
                font-size: 0.9rem;
                gap: 0.8rem;
            }

            .faq-accordion-number {
                min-width: 28px;
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }

            .faq-accordion-body {
                padding: 0 1rem 1.2rem 2.8rem;
                font-size: 0.85rem;
            }

            .faq-search-input {
                padding: 0.8rem 1rem 0.8rem 2.5rem;
                font-size: 0.9rem;
            }

            .faq-category-section {
                gap: 0.6rem;
                margin-bottom: 2rem;
            }

            .faq-category-btn {
                padding: 0.5rem 0.9rem;
                font-size: 0.8rem;
            }

            .faq-contact-section {
                padding: 1.8rem 1.2rem;
                margin-top: 3rem;
            }

            .faq-contact-title {
                font-size: 1.1rem;
                margin-bottom: 0.6rem;
            }

            .faq-contact-text {
                font-size: 0.9rem;
                margin-bottom: 1.2rem;
            }

            .faq-contact-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.85rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE (480px)
           ============================================ */
        @media (max-width: 480px) {
            .faq-section-wrapper {
                padding: 2rem 0.8rem;
            }

            .faq-header-section {
                margin-bottom: 2.5rem;
            }

            .faq-header-pretitle {
                font-size: 0.7rem;
                letter-spacing: 1.5px;
            }

            .faq-header-title {
                font-size: 1.5rem;
                line-height: 1.2;
            }

            .faq-header-description {
                font-size: 0.9rem;
            }

            .faq-accordion-wrapper {
                gap: 0.8rem;
            }

            .faq-accordion-header {
                padding: 1rem 0.8rem;
            }

            .faq-accordion-title {
                font-size: 0.85rem;
                gap: 0.6rem;
            }

            .faq-accordion-icon {
                width: 20px;
                height: 20px;
                font-size: 1rem;
            }

            .faq-accordion-body {
                padding: 0 0.8rem 1rem 2.5rem;
                font-size: 0.8rem;
            }

            .faq-search-wrapper {
                max-width: 100%;
            }

            .faq-search-input {
                padding: 0.75rem 1rem 0.75rem 2.3rem;
                font-size: 0.85rem;
            }

            .faq-category-section {
                gap: 0.5rem;
                margin-bottom: 1.8rem;
            }

            .faq-category-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }

            .faq-contact-section {
                padding: 1.5rem 1rem;
                margin-top: 2.5rem;
            }

            .faq-contact-title {
                font-size: 1rem;
            }

            .faq-contact-btn {
                width: 100%;
                padding: 0.75rem 1.2rem;
                font-size: 0.8rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - SMALL MOBILE (360px)
           ============================================ */
        @media (max-width: 360px) {
            .faq-section-wrapper {
                padding: 1.5rem 0.6rem;
            }

            .faq-header-section {
                margin-bottom: 2rem;
            }

            .faq-header-pretitle {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }

            .faq-header-title {
                font-size: 1.3rem;
            }

            .faq-header-description {
                font-size: 0.85rem;
            }

            .faq-accordion-header {
                padding: 0.9rem 0.7rem;
            }

            .faq-accordion-title {
                font-size: 0.8rem;
            }

            .faq-accordion-number {
                min-width: 26px;
                width: 26px;
                height: 26px;
                font-size: 0.75rem;
            }

            .faq-accordion-body {
                padding: 0 0.7rem 0.9rem 2.3rem;
                font-size: 0.75rem;
            }

            .faq-search-icon {
                left: 0.8rem;
                font-size: 1rem;
            }

            .faq-search-input {
                padding: 0.7rem 0.8rem 0.7rem 2rem;
                font-size: 0.8rem;
            }

            .faq-category-btn {
                padding: 0.35rem 0.7rem;
                font-size: 0.7rem;
            }

            .faq-contact-section {
                padding: 1.2rem 0.8rem;
            }

            .faq-contact-title {
                font-size: 0.95rem;
            }

            .faq-contact-text {
                font-size: 0.8rem;
            }

            .faq-contact-btn {
                padding: 0.7rem 1rem;
                font-size: 0.75rem;
            }
        }

        /* ============================================
           ACCESSIBILITY & MOTION
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            .faq-section-wrapper::before,
            .faq-section-wrapper::after,
            .faq-accordion-item,
            .faq-accordion-header:hover,
            .faq-accordion-icon,
            .faq-accordion-content,
            .faq-accordion-body,
            .faq-contact-btn,
            .faq-category-btn {
                animation: none !important;
                transition: none !important;
            }
        }

        @media (prefers-color-scheme: light) {
            body {
                background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            }

            .faq-section-wrapper {
                background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #dcdcdc 100%);
            }

            .faq-header-title,
            .faq-accordion-title,
            .faq-contact-title {
                color: #1a1a2e;
            }

            .faq-header-description,
            .faq-accordion-body {
                color: rgba(0, 0, 0, 0.8);
            }

            .faq-accordion-item {
                background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 20, 147, 0.02) 100%);
                border-color: rgba(255, 105, 180, 0.15);
            }

            .faq-search-input {
                background: rgba(0, 0, 0, 0.05);
                border-color: rgba(255, 105, 180, 0.2);
                color: #1a1a2e;
            }

            .faq-search-input::placeholder {
                color: rgba(0, 0, 0, 0.5);
            }

            .faq-contact-section {
                background: linear-gradient(135deg, rgba(255, 105, 180, 0.08) 0%, rgba(255, 20, 147, 0.03) 100%);
                border-color: rgba(255, 105, 180, 0.2);
            }
        }

        /* banner image */
        .banner-container {
    position: relative;
    width: 100%;
    min-height: 550px; /* adjust if needed */
    background-image: url("/images/confidence-bg.webp"); /* 🔥 Change to your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    
}

@media (max-width: 768px) {
    .banner-container {
        height: 50vh;
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 45vh;
        min-height: 240px;
    }
}


/* testimonials */
/* ============================================
           TESTIMONIALS MAIN CONTAINER
           ============================================ */
        .testimonials-section-wrapper {
            width: 100%;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section-wrapper::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .testimonials-section-wrapper::after {
            content: '';
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 105, 180, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-30px);
            }
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ============================================
           TESTIMONIALS HEADER SECTION
           ============================================ */
        .testimonials-header-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials-header-pretitle {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ff69b4;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .testimonials-header-title {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.2;
            color: #fff;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(255, 105, 180, 0.2);
        }

        .testimonials-header-title-accent {
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials-header-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ============================================
           TESTIMONIALS GRID CONTAINER
           ============================================ */
        .testimonials-grid-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        /* ============================================
           TESTIMONIAL CARD
           ============================================ */
        .testimonial-card {
            background: linear-gradient(135deg, rgba(255, 105, 180, 0.08) 0%, rgba(255, 20, 147, 0.05) 100%);
            border: 1px solid rgba(255, 105, 180, 0.2);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff69b4, transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .testimonial-card:hover {
            border-color: rgba(255, 105, 180, 0.4);
            box-shadow: 0 12px 40px rgba(255, 105, 180, 0.2);
            transform: translateY(-4px);
            background: linear-gradient(135deg, rgba(255, 105, 180, 0.12) 0%, rgba(255, 20, 147, 0.08) 100%);
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card.featured {
            grid-column: span 1;
            border-color: #ff69b4;
            background: linear-gradient(135deg, rgba(255, 105, 180, 0.15) 0%, rgba(255, 20, 147, 0.1) 100%);
            box-shadow: 0 8px 32px rgba(255, 105, 180, 0.25);
        }

        /* ============================================
           TESTIMONIAL RATING STARS
           ============================================ */
        .testimonial-stars {
            display: flex;
            gap: 0.4rem;
            margin-bottom: 1.2rem;
        }

        .testimonial-star {
            color: #ff69b4;
            font-size: 1rem;
        }

        .testimonial-star.empty {
            color: rgba(255, 105, 180, 0.3);
        }

        /* ============================================
           TESTIMONIAL CONTENT
           ============================================ */
        .testimonial-content {
            flex: 1;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            font-size: 0.95rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -0.5rem;
            font-size: 2rem;
            color: #ff69b4;
            opacity: 0.3;
            font-weight: bold;
        }

        /* ============================================
           TESTIMONIAL AUTHOR INFO
           ============================================ */
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 105, 180, 0.15);
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
        }

        .testimonial-author-info {
            display: flex;
            flex-direction: column;
        }

        .testimonial-author-name {
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .testimonial-author-title {
            color: #ff69b4;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* ============================================
           TESTIMONIALS CAROUSEL CONTROLS
           ============================================ */
        .testimonials-carousel-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .testimonials-carousel-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 105, 180, 0.1);
            border: 1px solid rgba(255, 105, 180, 0.3);
            color: #ff69b4;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonials-carousel-btn:hover {
            background: rgba(255, 105, 180, 0.2);
            transform: scale(1.1);
        }

        .testimonials-carousel-btn.active {
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            border-color: #ff69b4;
            color: #fff;
        }

        /* ============================================
           TESTIMONIALS STATS SECTION
           ============================================ */
        .testimonials-stats-section {
            background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.05) 100%);
            border: 1px solid rgba(255, 105, 180, 0.2);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .testimonials-stat {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .testimonials-stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials-stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* ============================================
           TESTIMONIALS FILTER BUTTONS
           ============================================ */
        .testimonials-filter-section {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .testimonials-filter-btn {
            padding: 0.6rem 1.2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 105, 180, 0.3);
            border-radius: 25px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonials-filter-btn:hover {
            border-color: #ff69b4;
            color: #ff69b4;
            transform: translateY(-2px);
        }

        .testimonials-filter-btn.active {
            background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
            border-color: #ff69b4;
            color: #fff;
        }

        /* ============================================
           RESPONSIVE DESIGN - TABLET (768px)
           ============================================ */
        @media (max-width: 768px) {
            .testimonials-section-wrapper {
                padding: 3rem 1.5rem;
            }

            .testimonials-header-title {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .testimonials-header-description {
                font-size: 1rem;
            }

            .testimonials-grid-wrapper {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-text {
                font-size: 0.9rem;
            }

            .testimonials-stats-section {
                padding: 1.5rem;
                gap: 1.5rem;
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }

            .testimonials-stat-number {
                font-size: 2rem;
            }

            .testimonials-stat-label {
                font-size: 0.85rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE (600px)
           ============================================ */
        @media (max-width: 600px) {
            .testimonials-section-wrapper {
                padding: 2.5rem 1rem;
            }

            .testimonials-header-section {
                margin-bottom: 2.5rem;
            }

            .testimonials-header-pretitle {
                font-size: 0.75rem;
                letter-spacing: 2px;
            }

            .testimonials-header-title {
                font-size: 1.8rem;
                letter-spacing: -0.5px;
            }

            .testimonials-header-description {
                font-size: 0.95rem;
            }

            .testimonials-grid-wrapper {
                gap: 1.2rem;
            }

            .testimonial-card {
                padding: 1.4rem;
            }

            .testimonial-stars {
                margin-bottom: 1rem;
            }

            .testimonial-text {
                font-size: 0.85rem;
                line-height: 1.6;
                padding-left: 1.2rem;
            }

            .testimonial-author {
                gap: 0.8rem;
                padding-top: 1.2rem;
            }

            .testimonial-avatar {
                width: 42px;
                height: 42px;
                font-size: 1rem;
            }

            .testimonial-author-name {
                font-size: 0.9rem;
            }

            .testimonial-author-title {
                font-size: 0.75rem;
            }

            .testimonials-filter-section {
                gap: 0.8rem;
                margin-bottom: 2rem;
            }

            .testimonials-filter-btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .testimonials-carousel-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .testimonials-stats-section {
                padding: 1.2rem;
                gap: 1.2rem;
            }

            .testimonials-stat-number {
                font-size: 1.8rem;
            }

            .testimonials-stat-label {
                font-size: 0.8rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - MOBILE (480px)
           ============================================ */
        @media (max-width: 480px) {
            .testimonials-section-wrapper {
                padding: 2rem 0.8rem;
            }

            .testimonials-header-section {
                margin-bottom: 2rem;
            }

            .testimonials-header-pretitle {
                font-size: 0.7rem;
                letter-spacing: 1.5px;
            }

            .testimonials-header-title {
                font-size: 1.5rem;
                line-height: 1.2;
            }

            .testimonials-header-description {
                font-size: 0.9rem;
            }

            .testimonials-grid-wrapper {
                gap: 1rem;
            }

            .testimonial-card {
                padding: 1.2rem;
            }

            .testimonial-stars {
                margin-bottom: 0.8rem;
            }

            .testimonial-star {
                font-size: 0.9rem;
            }

            .testimonial-text {
                font-size: 0.8rem;
                line-height: 1.5;
                padding-left: 1rem;
            }

            .testimonial-text::before {
                font-size: 1.5rem;
                top: -0.3rem;
            }

            .testimonial-author {
                gap: 0.6rem;
                padding-top: 1rem;
            }

            .testimonial-avatar {
                width: 38px;
                height: 38px;
                font-size: 0.9rem;
            }

            .testimonial-author-name {
                font-size: 0.85rem;
            }

            .testimonial-author-title {
                font-size: 0.7rem;
            }

            .testimonials-filter-section {
                gap: 0.6rem;
                margin-bottom: 1.8rem;
            }

            .testimonials-filter-btn {
                padding: 0.45rem 0.9rem;
                font-size: 0.75rem;
            }

            .testimonials-carousel-controls {
                gap: 0.8rem;
                margin-top: 1.5rem;
            }

            .testimonials-carousel-btn {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
            }

            .testimonials-stats-section {
                padding: 1rem;
                gap: 1rem;
                grid-template-columns: 1fr 1fr;
            }

            .testimonials-stat-number {
                font-size: 1.5rem;
            }

            .testimonials-stat-label {
                font-size: 0.75rem;
            }
        }

        /* ============================================
           RESPONSIVE DESIGN - SMALL MOBILE (360px)
           ============================================ */
        @media (max-width: 360px) {
            .testimonials-section-wrapper {
                padding: 1.5rem 0.6rem;
            }

            .testimonials-header-section {
                margin-bottom: 1.8rem;
            }

            .testimonials-header-pretitle {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }

            .testimonials-header-title {
                font-size: 1.3rem;
            }

            .testimonials-header-description {
                font-size: 0.85rem;
            }

            .testimonials-grid-wrapper {
                gap: 0.8rem;
            }

            .testimonial-card {
                padding: 1rem;
            }

            .testimonial-text {
                font-size: 0.75rem;
                padding-left: 0.8rem;
            }

            .testimonial-avatar {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }

            .testimonial-author-name {
                font-size: 0.8rem;
            }

            .testimonial-author-title {
                font-size: 0.65rem;
            }

            .testimonials-filter-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.7rem;
            }

            .testimonials-stats-section {
                padding: 0.8rem;
                gap: 0.8rem;
            }

            .testimonials-stat-number {
                font-size: 1.3rem;
            }

            .testimonials-stat-label {
                font-size: 0.7rem;
            }
        }

        /* ============================================
           ACCESSIBILITY & MOTION
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            .testimonials-section-wrapper::before,
            .testimonials-section-wrapper::after,
            .testimonial-card,
            .testimonials-carousel-btn,
            .testimonials-filter-btn {
                animation: none !important;
                transition: none !important;
            }
        }

        @media (prefers-color-scheme: light) {
            body {
                background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            }

            .testimonials-section-wrapper {
                background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #dcdcdc 100%);
            }

            .testimonials-header-title {
                color: #1a1a2e;
            }

            .testimonials-header-description {
                color: rgba(0, 0, 0, 0.8);
            }

            .testimonial-card {
                background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 20, 147, 0.02) 100%);
                border-color: rgba(255, 105, 180, 0.15);
            }

            .testimonial-card.featured {
                background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 20, 147, 0.05) 100%);
            }

            .testimonial-text {
                color: rgba(0, 0, 0, 0.8);
            }

            .testimonial-author-name {
                color: #1a1a2e;
            }

            .testimonials-stats-section {
                background: linear-gradient(135deg, rgba(255, 105, 180, 0.08) 0%, rgba(255, 20, 147, 0.03) 100%);
                border-color: rgba(255, 105, 180, 0.15);
            }

            .testimonials-stat-label {
                color: rgba(0, 0, 0, 0.8);
            }
        }
/* testimonials */

/* extra */

/* extra */