        /* ===== GLOBAL CSS VARIABLES ===== */
        :root {
            --color-primary-gold: #C28C3B;
            --color-dark-grey: #333;
            --color-black: #000000;
            --color-white: #FFFFFF;
            --color-light-grey: #F5F5F5;
            --color-text-grey: #666666;
            --color-light-yellow: rgb(248 189 102);
            --color-FC8972 : #FC8972;
            --color-4660BD : #4660BD;
            --color-2F2E2E : #2F2E2E;
            --color-545454 : #545454;
            --color-33281C : #33281C;
            --color-2e3132 : #2e3132;
            --color-E5C184 :#E5C184;
            --color-light-primary-gold:rgb(202 160 109);
            --color-2AD1BB: #2AD1BB;



            /* Background Variations */
            --bg-dark: #2F2E2E;
            --bg-light: #FAFAFA;
            --bg-card: #FFFFFF;
            --bg-overlay: rgba(0,0,0,0.45);
            --bg-overlay-menu-44950: rgb(46 49 50 / 95%);
            --bg-overlay-banner-505050 : rgb(50 50 50 / 60%);
            
            --font-primary: "Open Sans", sans-serif;
            
                /* Font Sizes */
             --fs-xs:12px;
            --fs-sm: 14px;
            --fs-md: 16px;
            --fs-lg: 18px;
            --fs-md-title: clamp(17px, 2vw, 20px);

            --fs-xl: clamp(20px, 2.2vw, 22px);


            --fs-xl-mid-title: clamp(20px, 2.4vw, 24px);
            --fs-xxl-mid-title: clamp(21px, 2.6vw, 26px);

            --fs-xxl: clamp(22px, 3vw, 28px);

            --fs-title: clamp(24px, 3.5vw, 33px);

            --fs-heading: clamp(30px, 4vw, 40px);

               /* Font Weights */
            --fw-light: 300;
            --fw-regular: 400;
            --fw-medium: 500;
            --fw-semi: 600;
            --fw-bold: 700;


            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 40px;
            --spacing-xl: 56px;
            --spacing-xxl: 80px;
            

            --border-radius: 4px;
            --transition: all 0.3s ease;
        }
       @media (max-width: 768px) {
          :root {
            --spacing-md: 15px;
          }
        }


        /* ===== GLOBAL RESET ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--color-dark-grey);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ===== HEADER SECTION ===== */
        .header {
            background-color: var(--color-2e3132);
            padding: var(--spacing-sm) 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 2px solid var(--color-primary-gold);
        }

        .header__container {
            max-width: 1028px;
            margin: 0 auto;
            padding: 6.5px var(--spacing-md);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header__logo {
            color: var(--color-white);
            font-size: var(--fs-md-title);
            font-weight: var(--fw-bold);
            letter-spacing: 2px;
        }

        .header__nav {
            display: flex;
            align-items: center;
            width: 78%;
            padding: 8px 0;
        }

        .header__nav-list {
            display: flex;
            /* gap: 34.3px; */
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            justify-content: space-between;
            width: 100%;
        }

        .header__nav-item {
            position: relative;
        }

        .header__nav-link {
            color: var(--color-white);
            font-size: var(--fs-lg);
            position: relative;
            transition: var(--transition);
            display: flex;
            /* padding: 6.5px 12.5px; */
            gap: 35px;
            align-items: center;
            font-family: var(--font-primary);
            font-weight: var(--fw-regular);
        }

        .header__nav-link:hover {
            color: var(--color-E5C184);
        }

    /*    .header__nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-E5C184);
            transition: var(--transition);
        }

        .header__nav-link:hover::after {
            width: 100%;
        }
    */
        .header__hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .header__hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--color-white);
            transition: var(--transition);
        }
         /* Language Dropdown */
        .language-selector {
            position: relative;
        }

        .language-selector > a {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color:var(--bg-overlay-menu-44950);
            max-width :92px;
            min-width: 92px;
            margin-top: 15px;
            display: none;
            flex-direction: column;
            left:-10px;
        }

        .language-dropdown.active {
            display: flex;
        }

        .language-dropdown a {
            padding: 12px 20px;
            transition: background-color 0.3s;
            color: var(--color-white);
        }

        .language-dropdown a:last-child {
            border-bottom: none;
        }

        .language-dropdown a:hover {
           color: var(--color-light-yellow);
        }

        .language-arrow {
            font-size: var(--fs-xs);
            transition: transform 0.3s;
        }

        .language-arrow.active {
            transform: rotate(180deg);
        }


        /* ===== MOBILE MENU + OVERLAY (FINAL) ===== */

        /* OVERLAY (fade + blur) */
        .mobile-overlay {
            position: fixed;
            inset: 0; /* top:0; right:0; bottom:0; left:0; */
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(2px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s;
            z-index: 9998;
        }

        /* MOBILE PANEL */
        .mobile-menu {
            position: fixed;
            left: 0; top: 0;
            width: 100%;
            height: 100vh;
            background: #292b2c;
            padding: 25px;
            box-sizing: border-box;
            z-index: 9999;

            /* initial hidden state: shifted left + faded */
            transform: translateX(100%);
            opacity: 0;
            transition: transform 0.45s cubic-bezier(.25,.8,.25,1), opacity 0.35s ease;
            display: flex;
            flex-direction: column;
        }

        /* visible states */
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu.active {
            transform: translateX(0);
            opacity: 1;
        }

        /* HEADER inside panel */
        .mobile-menu .mobile-menu__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .mobile-menu .mobile-lang {
            color:var(--color-white);
            font-size: var(--fa-md);
        }

        .mobile-menu .mobile-close i {
            font-size: var(--fs-xl-mid-title);
            color: var(--color-white);
            cursor: pointer;
        }

        /* MENU LIST */
        .mobile-menu .mobile-menu__list {
            list-style: none;
            padding: 0;
            margin: 0;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-menu .mobile-menu__list li {
            border-bottom: 1px solid #404344;
        }

        /* link animation initial */
        .mobile-menu .mobile-menu__list a {
            display: block;
            padding: 14px 0;
            font-size: var(--fs-md);
            color: var(--color-white);
            text-decoration: none;
            opacity: 0;
            transform: translateX(-12px);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        /* active item color */
        .mobile-menu .mobile-menu__list a.active {
            color: #c7a661;
        }

        /* when panel active, reveal links (stagger via nth-child) */
        .mobile-menu.active .mobile-menu__list a {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu.active .mobile-menu__list li:nth-child(1) a { transition-delay: 0.04s; }
        .mobile-menu.active .mobile-menu__list li:nth-child(2) a { transition-delay: 0.08s; }
        .mobile-menu.active .mobile-menu__list li:nth-child(3) a { transition-delay: 0.12s; }
        .mobile-menu.active .mobile-menu__list li:nth-child(4) a { transition-delay: 0.16s; }
        .mobile-menu.active .mobile-menu__list li:nth-child(5) a { transition-delay: 0.20s; }
        .mobile-menu.active .mobile-menu__list li:nth-child(6) a { transition-delay: 0.24s; }

        /* DROPDOWN (simple) */
        .mobile-menu .dropdown .arrow {
            float: right;
            transition: transform 0.25s ease;
        }
        .mobile-menu .dropdown-menu {
            display: none;
            padding-left: 15px;
        }
        .mobile-menu .dropdown.active .dropdown-menu {
            display: block;
        }
        .mobile-menu .dropdown.active .arrow {
            transform: rotate(180deg);
        }

        /* SOCIAL ICONS */
        .mobile-menu .mobile-social {
            display: flex;
            padding-top: 20px;
            gap: 20px;
            margin-top: 20px; 
        }
        .mobile-menu .mobile-social i {
            color: var(--color-white);
            font-size: var(--fs-md-title);
        }

        /* HAMBURGER styling + animation (the header hamburger toggles X) */
        .header__hamburger {
            width: 28px;
            height: 22px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 10001;
        }
        .header__hamburger span {
            display: block;
            height: 3px;
            background: var(--color-white);
            border-radius: 3px;
            transition: transform 0.35s ease, opacity 0.25s ease;
        }
        .header__hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        .header__hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .header__hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* small responsive tweak */
      /*  @media (min-width: 992px) {
          .mobile-menu, .mobile-overlay, .header__hamburger { display: none; }
        }*/


        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            max-height: 693px;
            min-height: 590px;
            display: flex;
            align-items: center;
            overflow: hidden;
            animation: fadeIn 1s ease-in;
        }
        .hero.home{
            height: 693px;
        }
        
        .hero .hero__video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -1;
            object-fit: cover;
        }
        
        .hero__window img {
            max-height: 615px;
            margin-top: 42px;
            height: 100%;
        }
        .hero .hero__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
            z-index: 0;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .hero .hero__container {
            max-width: 1010px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero .hero__content {
            max-width: 60%;
            color: var(--color-white);
            margin-top: -46px;
            display: flex;
            flex-direction: column;
            font-family: var(--font-primary);
            padding-left: 10px;
        }
        .hero__window {
            width: 41%;
            justify-content: center;
            display: flex;
        }
        .hero .hero__title {
            font-family: var(--font-primary);
            font-size: var(--fs-title);
            line-height: 1.5em;
            font-weight: var(--fw-regular);
        }
        
        .hero .hero__subtitle {
            font-size: var(--fs-xxl);
            font-style: italic;
            margin-bottom: var(--spacing-lg);
        }
        .hero .hero__window-pane img {
            max-height: 618px;
            max-width: 329px;
            object-fit: cover;
        }
        .hero__window img {
            margin-top: 40px;
        }
        
        /* Parent Section */
        .intro-section {
            display: flex;
            justify-content: center;
            height: 100%;
            position: relative;
            top: -200px;
            padding: 0 var(--spacing-md);
            max-width: 1011px;
            margin: auto auto -148px;
        }
        .intro-inner {
            max-width: 941px;
            width: 100%;
            border: 2px solid var(--color-primary-gold);
            text-align: center;  
            transition: var(--transition);
        }
        .intro-description{
            padding: 70px 97px 70px;
        }
        .intro-description h3 {
            text-align: left;
            font-size: var(--fs-md-title);
            line-height: 1.2em;
            font-weight: var(--fw-regular);
            color: var(--color-primary-gold);
            margin: 27px 0px 11px;
        }
        .intro-content {
            padding: 65px 97px 50px;
            background-color: var(--bg-overlay-banner-505050);
            height: 197px;
         }

        .intro-title {
            font-family: var(--font-primary);
            font-size: var(--fs-xl-mid-title);
            font-weight: var(--fw-regular);
            color: var(--color-white);
            margin-bottom: var(--spacing-sm);
            text-align: left;
            line-height: 1.4em;
        }
        .intro-subtitle {
            font-family: var(--font-primary);
            font-size: var(--fs-xxl-mid-title);
            font-weight: var(--fw-light);
            color: var(--color-white);
            margin-bottom: var(--spacing-lg);
        }
        .intro-description p {
            font-family: var(--font-secondary);
            font-size: var(--fs-md);
            line-height: 1.6em;
            color: var(--color-dark-grey);
            margin: 0;
            text-align: left;
            margin-right: 10px;
        }
         /* ===== image SECTION ===== */
        .image-section {
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 548px;  /* adjust as needed */
            width: 100%;
            max-height: 548px;
        }
        
        /* ===== PRODUCTS SECTION ===== */

        .products__container {
            max-width: 1030px;
            margin: 0 auto 40px;
            padding: 10px var(--spacing-md);
        }

        .products__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 23px;
        }

        .product-card {
            text-align: center;
            background-color: var(--color-white);
            margin: var(--spacing-lg) auto 0;
        }
        
        .product-card__image-wrapper {
            border: 2px solid var(--color-primary-gold);
        }
        
        .product-card__image {
            max-width: 307px;
            max-height: 384px;
            object-fit: contain;
            margin: auto;
            width: 100%;
        }
        
        .product-card__title-wrapper {
            background-color: var(--color-primary-gold);
            margin: 0 auto 8px;
            width: fit-content;
            padding: 4px 11px 4px;
            display: flex;
            justify-content: center;
            flex-wrap: nowrap;
            position: relative;
            top: -21px;
            min-width: 82%;
        }
        
        .product-card__title {
            font-family: var(--font-primary);
            color: var(--color-white);
            font-size: var(--fs-md);
            font-weight: var(--fw-regular);
        }
        
        .product-card__description {
            font-family: var(--font-secondary);
            font-size: var(--fs-sm);
            color: var(--color-black);
            line-height: 1.4em;
            text-align: left;
            margin-right: 7px;
        }
        .product-card__title-wrapper:hover {
            background-color: var(--color-light-yellow) ;
        }

        
        /* ===== TESTIMONIAL SECTION ===== */
        .testimonial {
            margin: auto;
            position: relative;
            background: var(--color-dark-grey);
        }
        
        .testimonial__card {
            color: var(--color-white);
            padding: 303px var(--spacing-xl);
            text-align: center;
            display: flex !important;
            align-items: anchor-center;
            justify-content: center;
            flex-direction: column;
            border-right: 1px solid var(--color-545454);
            height: auto;
        }
        
        .testimonial__text {
            font-size: var(--fs-xxl);
            line-height: 1.2em;
            font-style: normal;
            max-width: 500px;
        }
        
        .testimonial__author {
            font-size: var(--fs-md);
            color: var(--color-white);
            font-weight: var(--fw-regular);
            font-style: italic;
            margin-top: 10px;
        }
        .testimonial .swiper-button-prev{
            position: absolute;
            left:5% !important;
        }

        .testimonial .swiper-button-next{
            position: absolute;
            right:5% !important;
        }
        
        .testimonial .swiper-button-prev,
        .testimonial .swiper-button-next {
            color: var(--color-white);
            font-size: var(--fs-md-title);
            width: 18px !important;
        }
        
        .testimonial .swiper-button-prev::after,
        .testimonial .swiper-button-next::after {
            font-size: 30px;
        }
        .swiper-pagination.custom-pagination {
          position: absolute;
          bottom: 4% !important; /* adjust space from bottom */
          left: 0;
          width: 100%;
          text-align: center;

        }

        .swiper-pagination.custom-pagination  .swiper-pagination-bullet {
          background-color: var(--color-white);
          border: 1px solid var(--color-white);
          height: 6px;
          width: 6px;
          background: var(--color-white);
          opacity: 1;
        }

        .swiper-pagination.custom-pagination  .swiper-pagination-bullet-active {
            background-color: transparent;
            border: 2px solid var(--color-white);
            padding: 2px;
            height: 9px ;
            width: 9px;
        }

        .crads-overlay-one {
            max-height:424px;
            max-width:325px;
            width:100%;
            height: 100%;
            background: var(--color-primary-gold);
            position:absolute;
            left:42%;
            z-index:-1;
            top: 20%;
        }
        .crads-overlay-two {
            max-height:424px;
            max-width:325px;
            width:100%;
            height: 100%;
            background: var(--color-FC8972);
            position:absolute;
            left:42%;
            z-index:-1;
            top: 20%;
        }
        .crads-overlay-three {
            max-height:424px;
            max-width:325px;
            width:100%;
            height: 100%;
            background: var(--color-4660BD);
            position:absolute;
            left:42%;
            z-index:-1;
            top: 20%;
        }
        
        /* ===== NEWSLETTER SECTION ===== */
        .newsletter {
            padding: var(--spacing-xl) 0;
            background: var(--color-primary-gold);
        }

        /* Center container */
        .newsletter__container {
            max-width: 900px;
            margin: auto;
            font-family: var(--font-primary);
        }

        /* Title */
        .newsletter__title {
            color: var(--color-545454);
            font-size: var(--fs-lg);
            letter-spacing: 3px;
            margin-bottom: var(--spacing-md);
            font-weight: var(--fw-regular);
        }
        /* Form layout */
        .newsletter form {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
            justify-content: space-between;
        }

       .newsletter form  input {
            padding: var(--spacing-sm);
            border: 1px solid var(--bg-overlay);
            background: var(--color-white);
            font-size: var(--fs-md);
            color: var(--color-text-grey);
            transition: var(--transition);
            max-width: 222px;
            height: 42px;
            width: 212px;
            outline: none;
            border-radius: 0px !important;
        }
        .newsletter form  span.frm_required {
            display: none;
        }

         .newsletter form  input:focus ,  .newsletter form  input:hover{
            border-color: var(--color-black);
            border: 1px solid var(--color-dark-grey);
        }

        .newsletter form .country-selected-display{
            height: 41px;
            border-radius: 0;
            padding-left: 10px;
            width: 43px;
        }
        .newsletter form .country-arrow{
            right: -28px;
        }
        .newsletter form .phone-input-wrapper input#field_r7flm {
            width: 152px;
            border: 0px;
            height: 41px;
        }
        /* Checkbox */
         .newsletter__check {
            width: 100%;
            margin: auto;
            margin-top: var(--spacing-xs);
            display: flex;
            align-items: center;
            gap: var(--spacing-xs);
            color: var(--color-dark-grey);
            font-size: var(--fs-md);
        }

        /* CUSTOM CHECKBOX STYLE */
         .newsletter form  input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;

            width: 16px;
            height: 16px;
            border: 1px solid var(--bg-overlay);
            cursor: pointer;
            position: relative;
            background: transparent;
            transition: var(--transition);
            padding: 5px;
            margin-right: 8px;
        }

        /* When checked */
         .newsletter form  input[type="checkbox"]:checked {
            background: var(--color-primary-gold);
            border: 1px solid var(--color-dark-grey);
        }

        /* CHECKMARK ICON */
         .newsletter form  input[type="checkbox"]:checked::after {
            content: "✔";
            color: var(--color-dark-grey);
            font-size: 10px;
            position: absolute;
            top: 0;
            left: 3px;
            font-weight: bold;
        }


        /* Submit Button */
        .newsletter form button {
            margin-top: var(--spacing-md);
            font-size: var(--fs-md);
            background: var(--color-white)!important;
            color: var(--color-dark-grey)!important;
            border: 2px solid var(--color-545454)!important;
            border-radius: var(--border-radius)!important;
            cursor: pointer;
            transition: var(--transition);
            max-width: 307px;
            width: 100%;
            height: 45px;
            margin: auto;
        }

        .newsletter form button:hover {
            background: var(--color-33281C) !important;
            color: var(--color-white)!important;
        }


        /* ===== FOOTER SECTION ===== */
        .footer {
            padding: var(--spacing-xl) 0 0;
        }

        .footer__container {
            max-width: 983px;
            margin: 0 auto;
            padding: 0 var(--spacing-md); ed
        }

        .footer__content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0!important;
            margin-bottom: var(--spacing-xl);
        }
        .footer__section {
            border-left: 2px solid var(--color-primary-gold);
            border-top: 2px solid var(--color-primary-gold);
            border-bottom: 2px solid var(--color-primary-gold);
            padding: 20px;
        }
        .footer__section:last-child{
            border-right: 2px solid var(--color-primary-gold);
        }
        .footer__section-title {
            font-size: var(--fs-lg);
            font-weight: var(--fw-regular);
            margin-bottom: 20px;
            color: var(--color-black);
            letter-spacing: 3.2px;
            font-family: var(--font-primary);
        }

        .footer__text {
            font-size: var(--fs-md);
            font-weight: var(--fw-regular);
            color: var(--color-black);
            font-family: var(--font-primary);
            display: flex;
            flex-direction: column;
            line-height: 1.4em;
        }

         .footer__logos {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            align-items: center;
            max-width: 983px;
            margin: 100px auto;
            flex-wrap: wrap;
        }
        .footer__logo-img {
            object-fit: contain;
            max-width: 156px;
            height: 55px !important;
        }
        .footer__section div {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer__logo-link {
            display: inline-block;
            transition: transform .2s ease;
        }

        .footer__logo-link:hover {
            transform: scale(1.05);
        }

        .footer__logo-img {
            height: 100px;
            width: auto;
            object-fit: contain;
        }

        .footer__bottom {
            background-color: var(--color-2F2E2E);
            padding: var(--spacing-md) 0 0;
            text-align: center;
            color: var(--color-white);
        }

        .footer__social {
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .footer__social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer__social-link:hover {
            background-color: var(--color-primary-gold);
        }
        .footer__bottom .footer-logo {
            max-width: 983px;
            margin: auto;
            align-items: center;
            justify-content: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 32px var(--spacing-md);
        }
        .footer__social{
            padding-top: 30px;
        }
        .footer-copyright p {
            max-width: 983px;
            margin: auto;
            align-items: center;
            display: flex;
            text-align: center;
            justify-content: center;
            padding: 22px 0 20px;
            color: var(--color-primary-gold);
            font-size: 14px;
            flex-wrap: wrap;
        }
        .footer-copyright p a{
            text-decoration: underline;
        }
        .footer__social a{
            font-size: var(--fs-xxl); !important;
            color: var(--color-white) !important;
         }
        .footer__bottom .footer-logo p.logo-text {
            font-family: var(--font-primary);
            letter-spacing: 5px;
            text-transform: uppercase;
            font-size: var(--fs-md-title);
        }
        .other-logo img {
            max-width: 114px;
            margin: auto;
        }

        .other-logo , .footer__social , .footer-copyright{
            background-color: var(--color-2F2E2E);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1366px) {
            .crads-overlay-one , .crads-overlay-two, .crads-overlay-three{
                left:38%;
            }
        }
       @media(max-width: 1024px) {
            .products__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .crads-overlay-one, .crads-overlay-two, .crads-overlay-three {
                left: 34%;
            }
        }
         @media (min-width: 993px) {
            .header__hamburger{
                display: none;
            }
        }
        @media (max-width: 992px) {
            .header__nav {
                display: none;
            }

            .header__hamburger {
                display: flex;
            }

            .hero__window {
                margin-top: var(--spacing-lg);
            }

            .products__grid {
                grid-template-columns: 1fr 1fr;
            }
            .newsletter__input{
                max-width: 31%;
                width: 100%;
            }
            .newsletter {
                padding: var(--spacing-xl) var(--spacing-md);
                background: var(--color-primary-gold);
            }
            .intro-content , .intro-description {
                padding: 65px 50px 50px;
            }
            .hero__window img {
                max-height: 570px;
            }

        }
        @media (max-width: 860px){
            .hero__window img{
                max-width: 270px;
            }
            .intro-content {
                padding: var(--spacing-xl) 97px 50px 50px;
                background-color: rgb(67 66 72 / 57%);
            }
            .newsletter__input{
                max-width: 31%;
                width: 100%;
            }
        }

        
        
        @media (max-width: 768px){
          .testimonial__card {
                padding: 50px var(--spacing-xl) 50px;
                height: 480px;
            }
           .crads-overlay-one, .crads-overlay-two, .crads-overlay-three {
                left: 23%;
                max-height: 337px;
                max-width: 250px;
            }
            .hero__window img {
                max-width: 230px;
                margin-top: 0px;
            }
            .footer__logos{
                margin: 50px auto;
                gap: 20px;
            }
            .hero.home {
                height: 500px;
                min-height: 500px;
            }
            .hero .hero__content{
                margin-top: 0px;
                padding-left: 0;
            }
            .hero__window {
                margin-top:0;
            }
            .intro-section{
                top: 0;
                padding: 60px var(--spacing-md);
                margin: auto;
            }
            .intro-content {
                background-color: transparent;
                padding: 50px 50px 0 50px;
                height: auto;
            }        
            .intro-title {
                color: var(--color-primary-gold);
            }
            .intro-description {
                padding: 0px 50px 50px;
            }
            .footer__logo-img{
                max-width: 100px;
            }
            .crads-overlay-one, .crads-overlay-two, .crads-overlay-three {
                left: 33%;
            }
            .newsletter form  .frm_fields_container {
                display: flex !important;
                flex-wrap: wrap !important;
                justify-content: space-between;
            }
            .newsletter form .frm_fields_container  .frm_form_field {
                width: 48%;
            }
       
            .footer__bottom .footer-logo img{
                max-width: 70px;
            }
        }
         @media (max-width: 600px){
            .footer__content {
                display: grid;
                grid-template-columns: repeat(1, 1fr);
            }
            .footer__section {
                border-right: 2px solid var(--color-primary-gold);
                border-bottom:0px;
            }
            .footer__section:last-child {
                border-bottom: 2px solid var(--color-primary-gold);
            }
            .crads-overlay-one, .crads-overlay-two, .crads-overlay-three {
                left: 25%;
            }
         }
        @media (max-width: 560px){
            .hero__window img {
                max-width: 203px;
            }
            .products__grid{
                grid-template-columns: 1fr;
            }
            .crads-overlay-one, .crads-overlay-two, .crads-overlay-three {
                left: 28%;
            }
            .intro-content {
                padding: 20px 20px 0 10px;
            }        
            .intro-description {
                padding: 0px 20px 20px;
            }
            .newsletter form .phone-input-wrapper input#field_r7flm {
                width: 110px;
                border: 0px;
                height: 41px;
            }
        }
        @media (max-width: 460px){
            .hero__window img {
                max-width: 150px;
            }
            .hero.home {
                height: 450px;
                min-height: 450px;
            }
             .crads-overlay-one, .crads-overlay-two, .crads-overlay-three {
                left: 16%;
            }
            .testimonial__card {
                padding: 50px var(--spacing-xl) 50px;
                height: 480px;
            }
           .crads-overlay-one, .crads-overlay-two, .crads-overlay-three {
                left: 23%;
                max-height: 337px;
                max-width: 250px;
            }
        }
        @media (max-width: 370px){
            .hero__window img {
                max-width: 132px;
            }
            .crads-overlay-one, .crads-overlay-two, .crads-overlay-three {
                left: 17%;
                max-height: 337px;
                max-width: 250px;
            }
        }




        /* =========================================================
           PRODUCT FEATURE SECTION (FULLY SCOPED UNDER PARENT CLASS)
        ========================================================= */

        .product-feature-section {
            padding: var(--spacing-xl) 0;
            background: var(--color-2e3132);
            font-family: var(--font-primary);
            border-top: 2px solid var(--color-primary-gold);
        }
        .doble-image {
            display: flex;
            justify-content: space-between;
        }

        .product-feature-section .pfs-container {
            max-width: 985px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* -----------------------------------------
           HEADER
        ----------------------------------------- */
        .product-feature-section .pfs-header h2 {
            font-size: var(--fs-xl);
            color: var(--color-primary-gold);
            font-weight: var(--fw-regular);
            margin-bottom: 10px;
        }

        .product-feature-section .pfs-header p {
            font-size: var(--fs-md);
            color: var(--color-white);
            line-height: 1.4em;
            margin-bottom: var(--spacing-md);
            font-family: var(--font-primary);
            font-weight: var(--fw-regular);
        }

        .product-feature-section .pfs-benefits {
            display: flex;
            margin-bottom: 10px;
        }

        .product-feature-section .pfs-benefits li {
            color: var(--color-white);
        }

        /* -----------------------------------------
           GRID
        ----------------------------------------- */
        .product-feature-section .pfs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--spacing-lg);
        }

        /* -----------------------------------------
           CARDS
        ----------------------------------------- */
        .product-feature-section .pfs-card {
            border: 2px solid var(--color-primary-gold);
            padding: var(--spacing-md);
            background: var(--color-white);
            transition: var(--transition);
            min-height: 585px;
            position: relative;
        }
        .product-feature-section .pfs-header p.banner-heading-new {
            font-size: var(--fs-md);
            font-family: var(--font-primary);
            font-weight: var(--fw-regular);
            font-style: normal;
            margin-bottom: 2px;
        }
        .product-feature-section .pfs-header p.banner-heading-new em{
            color:var(--color-light-primary-gold);
            font-style: normal;
            font-size: var(--fs-lg);
            font-family: var(--font-primary);
            font-weight: var(--fw-regular);
            font-style: normal;
        }
        .product-feature-section .img-ful-height .pfs-img img {
            height: 375px !important;
        }
        .product-feature-section .formate-two .pfs-card p{
            margin-bottom: 25px !important;
        }

        .product-feature-section .pfs-card:hover {
            border-color: var(--color-primary-gold);
            transform: translateY(-4px);
        }
        .product-feature-section .formate-two .pfs-card {
            padding: 15px;
        }
        .product-feature-section .formate-two .pfs-card img {
            height: 245px;
        }
        .product-feature-section .formate-two .pfs-card .pfs-label {
            width: 95%;
            margin: -5px auto 13px;
        }    
        .product-feature-section .formate-two .pfs-card  a.card-erfahre-text {
            font-size: var(--fs-sm);
            font-weight: var(--fw-bold);
            text-decoration: underline;
            position: absolute;
            bottom: 25px;
            justify-content: center;
            display: flex;
            align-items: center;
            width: 90%;
        }
        .notes-for-section {
            margin: 30px 0 0;
            font-size: var(--fs-md);
            color: var(--color-2F2E2E);
            font-family: var(--font-primary);
            font-weight: var(--fw-regular);
        }

        /* Label */
        .product-feature-section .pfs-label {
            background: var(--color-primary-gold);
            color: var(--color-white);
            text-align: center;
            padding: 6px 0;
            margin-bottom: var(--spacing-md);
            font-weight: var(--fw-normal);
        }

        /* Image */
        .product-feature-section .pfs-img {
            text-align: center;
            margin-bottom: var(--spacing-md);
        }

        .product-feature-section .pfs-img img {
            max-width: 100%;
            height: 230px;
            object-fit: contain;
            margin: auto;
        }

        /* List */
        .product-feature-section .pfs-list {
            padding-left: 20px;
            color: var(--color-text-grey);
            font-size: var(--fs-sm);
        }

        .product-feature-section .pfs-list li {
            margin-bottom: 3px;
            color: var(--color-33281C);
        }

        /* -----------------------------------------
           CTA BOX
        ----------------------------------------- */
        .product-feature-section .pfs-cta {
            border: 2px dashed var(--color-primary-gold);
            color: var(--color-primary-gold);
            font-weight: var(--fw-bold);
            text-align: center;
            font-size: var(--fs-xl-mid-title);
            padding: 40px 0;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
        }

        .product-feature-section .pfs-cta:hover {
            background: var(--color-primary-gold);
            color: var(--color-white);
        }
        .commonm-div-list .list-main-subheading {
            color: var(--color-white);
            font-weight: var(--fw-bold);
            font-size: var(--fs-md);
            font-family: var(--font-primary);
            margin-bottom: 4px;
            margin-top: 20px;
        }
        .commonm-div-list ul.pfs-benefits {
            padding-left: 30px;
            flex-direction: column;
            gap: 1px;
        }
        @media (min-width: 993px) {
            .header__nav-item.menu-item-has-children:hover > .sub-menu {
                display: flex;
                opacity: 1;
                visibility: visible;
                flex-direction: column;
                gap: 12px;
                min-width: 228px;
                padding: 20px 6px;
                left: -70px;
            }

            .sub-menu {
                display: none;
                position: absolute;
                background: rgba(46, 49, 50 , 0.9);
                padding: 10px 15px 5px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
                z-index: 999;
                text-align: center;
            }

            .header__nav-item.menu-item-has-children:hover > .sub-menu li a {
                justify-content: center;
            }
        }

        .backgroud-white {
            background: var(--color-white);
        }
        p.cards-bottom-paragraph {
            font-size: var(--fs-xs);
            position: absolute;
            bottom: 20px;
        }
        .card-link-text{
            text-align: center;
            margin: 15px auto;
            font-size: var(--fs-sm);
            font-weight: var(--fw-bold);
            text-decoration: underline;
            display: flex;
            justify-content: center;
        }
        .product-feature-section .pfs-card p {
            font-size: var(--fs-sm);
            font-family: var(--pr);
        }
        .product-feature-section .pfs-card.last-card {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .product-feature-section .pfs-card.last-card:hover {
            background: var(--color-primary-gold);
        }
        .product-feature-section .pfs-card.last-card:hover .last-card-heading{
            color: var(--color-white);
        }
        .product-feature-section .pfs-card.last-card .last-card-heading {
            font-size: var(--fs-xxl);
            color: var(--color-primary-gold);
        }
        .button-form-bottom-services {
            display: flex;
            justify-content: center;
            margin: 50px 0 0;
        }
        .button-form-bottom-services a {
            height: 49px;
            background: var(--color-primary-gold);
            width: 283px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 2px solid var(--color-primary-gold);
            color: var(--color-white);
            font-size: var(--fs-md);
        }
        .button-form-bottom-services a:hover{
            border: 2px solid var(--color-dark-grey);
        }
        /* ============================
           BARTYN QUOTE SECTION
        ============================ */
        .bartyn-quote-section {
            background: var(--bg-dark);
            padding: 100px var(--spacing-md);
            display: flex;
            justify-content: center;
        }

        /* QUOTE BOX */
        .bartyn-quote-box {
            
            padding: var(--spacing-xl);
            max-width: 720px;
            width: 100%;
            text-align: center;
            border-radius: var(--border-radius);
            font-family: var(--font-primary);
            color: var(--color-white);
            position: relative;
        }

        /* CE0 LABEL */
        .bartyn-quote-ceo-label {
            font-size: var(--fs-sm);
            font-weight: var(--fw-medium);
            letter-spacing: 2px;
            opacity: 0.85;
            margin-bottom: var(--spacing-md);
            position: relative;
        }

        .bartyn-quote-ceo-label::after {
            content: "";
            display: block;
            width: 120px;
            height: 1px;
            background: var(--color-white);
            margin: 10px auto 0;
            opacity: 0.6;
        }

        /* MAIN QUOTE TEXT */
        .bartyn-quote-text {
            font-size: var(--fs-title);
            line-height: 1.6;
            margin-bottom: var(--spacing-xl);
            font-weight: var(--fw-regular);
            color: var(--color-white);
        }

        /* AUTHOR SECTION */
        .bartyn-quote-author {
            font-size: var(--fs-md);
            font-style: italic;
            opacity: 0.9;
            color: var(--color-light-grey);
            line-height: 1.4;
        }


