/*
Theme Name: Lourenco
Theme URI: https://bpract.com/lourenco
Author: Pranav C
Author URI: https://bpract.com/lourenco
Description: Lourenco is a modern, lightweight, and responsive custom WordPress theme developed by Pranav C. It focuses on clean, semantic markup, fast performance, and easy customization using Advanced Custom Fields (ACF). The theme integrates Swiper.js sliders, WooCommerce-ready templates, and responsive layouts optimized for Core Web Vitals and SEO.
Version: 1.0.1
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lourenco.com
Tags: custom-theme, responsive, accessibility-ready, block-editor-styles, woocommerce, seo-friendly, lightweight
*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --font-primary: 'Poppins', sans-serif;
  --color-primary: #ffffff;
  --color-secondary: #C9975C;
  --color-bg: #030724;
  --color-text-light: #cdcae1;
  --color-border: rgba(255, 255, 255, 0.2); 
}

body {
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--color-primary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1a73e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #c9a86b;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 400;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { 
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-primary);

  @media (min-width: 768px){
    font-size: 24px;
  }
  @media (min-width: 992px){
    font-size: 28px;
  }
}
h4 { 
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-primary);

  @media (min-width: 768px){
    font-size: 20px;
  }
  @media (min-width: 992px){
    font-size: 24px;
  } 
}
h5 { 
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--color-primary);

  @media (min-width: 768px){
    font-size: 18px;
  }
  @media (min-width: 992px){
    font-size: 20px;
  }
}

h6 { font-size: 0.875rem; }

p {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-primary);

  @media (min-width: 768px){
    font-size: 15px;
    line-height: 1.3;
  }
  @media (min-width: 992px){
    font-size: 16px;
    line-height: 1.4;
  }
}

small {
  font-size: 10px;
  display: block;
  text-align: center;
  color: #ffffff80;

  @media (min-width: 768px){
    font-size: 11px;
  }
  @media (min-width: 992px){
    font-size: 12px;
  }
}

.section-content{
  padding: 24px 0;

  @media (min-width: 576px){
    padding: 40px 0;
  }
  @media (min-width: 992px){
    padding: 56px 0;
  }
}

.section-button{
  display: flex;
  justify-content: center;
}

section{
  padding: 40px 0;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;

    @media (min-width: 1600px){
      object-position: center;
    }
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  section{
    padding: 50px 0;
  }
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  section{
    padding: 60px 0;
  }
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  section{
    padding: 80px 0;
  }
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  section{
    padding: 100px 0;
  }
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  section{
    padding: 120px 0;
  }
  .container {
    max-width: 1320px;
  }
}

/* @media (min-width: 2000px) {
  .container {
    max-width: 1600px;
  }
} */

.section-header {
  text-align: center;
}

.section-tag {
  font-size: 12px;
  font-weight: 400;
  line-height: 48px;
  color: var(--color-secondary);

  @media (min-width: 576px) {
    font-size: 14px;
  }
  @media (min-width: 992px) {
    font-size: 16px;
  }
}

.section-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 300;
  color: var(--color-primary);

  @media (min-width: 768px){
    font-size: 40px;
    line-height: 50px;
  }
  @media (min-width: 998px){
    font-size: 48px;
    line-height: 60px;
  }
}


.section-subtitle{
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  color: var(--color-primary);
  margin-top: 16px;

  @media (min-width: 768px){
    font-size: 18px;
    line-height: 24px;
  }

  @media (min-width: 992px){
    font-size: 20px;
    line-height: 28px;
  }
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: var(--color-bg);
  font-weight: 500;
  border-radius: 40px;
  padding: 8px 20px 8px 10px;
  text-decoration: none;
  transition: all 0.3s ease;

  img{
    height: 20px;
    width: auto;

    @media (min-width: 568px){
      height: 28px;
    }
    @media (min-width: 992px){
      height: 32px;
    }
  }
}

/* === HEADER BASE === */
.site-header {
  position: fixed;          
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;  
  color: #fff;
  padding: 12px 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* === LOGO === */

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img,.site-logo .custom-logo {
  height: 48px;
  width: auto;
}

.site-title{
  font-weight: 600;
  margin-left: 16px;
  font-size: 32px;
  color: var(--color-primary);
}

/* === NAV MENU (MOBILE FIRST) === */
.main-navigation {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #0a0d2c;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.main-navigation.active {
  display: flex;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.nav-menu a {
  font-size: 15px;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #c9a86b;
}

/* === SECONDARY NAV (RIGHT SIDE ON DESKTOP) === */
.secondary-navigation {
  display: none; /* hidden on mobile */
}

/* === BUTTON === */
.btn-signup {
  background: #c9a86b;
  color: #fff;
  border-radius: 25px;
  padding: 8px 18px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.btn-signup:hover {
  background: #b68f58;
}

/* === HEADER BUTTONS === */

.header-buttons{
  display: none;
}

/* === HAMBURGER === */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* === DESKTOP VIEW (≥992px) === */
@media (min-width: 992px) {
  .menu-toggle { display: none; }

  .header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
  }

  .site-logo {
    justify-self: start;
  }

  .main-navigation {
    position: static;
    display: flex !important;
    justify-content: center;
    background: none;
    padding: 0;
  }

  .nav-menu {
    flex-direction: row;
    gap: 16px;
  }

  .nav-menu li{
    font-size: 16px;
  }

  .header-buttons {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 8px;

    .button{
      display: inline-flex;
      flex: 1 1 0;
      min-width: 110px;
      text-align: center;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 300;
      border-radius: 24px;
      padding: 8px 16px;
      text-decoration: none;
      font-size: 13px;
      transition: all 0.3s ease;
    }
    .signup{
      background: #fff;
      color: #0a0d2c;

      img{
        width: 16px;
        height: auto;
      }

      &:hover {
        background: var(--color-secondary);
        color: #fff;
      }
    }

    .login{
      background: var(--color-secondary);
      color: #fff;

      img{
        width: 12px;
        height: auto;
      }

      &:hover {
        background: #b2844f;
      }
    }
  }
}


/* === FOOTER BASE === */
.site-footer {
  color: #fff;
  padding: 60px 0 30px;
  font-size: 0.9rem;
  text-align: center;
}

.footer-container {
  margin: 0 auto;
  padding: 0 20px;
}

/* === LOGO === */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 10px;
  text-decoration: none;
}

.footer-logo .custom-logo-link img {
  height: 30px;
  width: auto;
}


.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-site-title {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-primary);
  margin-left: 16px;
}

/* === FOOTER TOP === */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

/* === FOOTER Left === */
.footer-left {
  display: flex;
  align-items: center;
}

/* === FOOTER RIGHT === */
.footer-right {
  color: #ddd;
  line-height: 1.6;
  text-align: center;
}

/* === FOOTER MENU === */
.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.footer-menu li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #c9a86b;
}

/* === COPYRIGHT === */
.footer-copy {
  color: #bbb;
  margin-top: 25px;
  font-size: 0.85rem;
}

/* === DESKTOP (≥768px) === */
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-right {
    text-align: right;
    max-width: 300px;
  }

  .footer-menu {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    /* border-top: 1px solid rgba(255,255,255,0.1); */
    margin-top: 40px;
    padding-top: 20px;
  }

  .footer-copy {
    text-align: center;
    margin-top: 20px;
  }
}

@media (min-width: 2000px) {
  .footer-right {
    max-width: 600px;
  }
}


/* === Hero === */

section.hero {
  position: relative;
  background: var(--color-bg);
  color: var(--color-primary);
  overflow: hidden;
  padding: 100px 0px;

  .section-content{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 60px;
    min-height: 650px;

    @media (min-width: 992px) {
      flex-direction: row;
      justify-content: space-between;
      padding-top: 100px;
      min-height: 550px;
      text-align: left;
      gap: 40px;
    }

    .badge{
      padding: 8px 20px 16px;
      border-radius: 8px;
      border: 2px solid var(--color-secondary);

      .joined{
        display: flex;
        justify-content: space-between;

        .count{
          font-size: 24px;
          color: var(--color-secondary);
          font-weight: 400;
        }
      }
      p{
        font-size: 16px;
        color: var(--color-text-light);
      }
      .people{
        display: flex;

        img{
          width: 40px;
          height: auto;
          border-radius: 50%;
        }
        img:nth-child(1){
          z-index: 1;
        }
        img:nth-child(2) {
          transform: translateX(-8px);
          z-index: 2;
        }
        img:nth-child(3) {
          transform: translateX(-16px);
          z-index: 3;
        }

      }
    }

    .title{
      font-size: 32px;
      line-height: 39px;
      font-weight: 400;
      color: var(--color-primary);

      @media (min-width: 768px){
        font-size: 40px;
        line-height: 49px;
      }
      @media (min-width: 998px){
        font-size: 48px;
        line-height: 59px;
      }

      span{
        color: var(--color-secondary);
        font-weight: 600;
      }
    }

    .subtitle-btn{
      color: var(--color-secondary);
      margin-top: 0;
      padding: 10px 16px 10px 10px;

      &:hover{
        color: var(--color-bg);
      }

      img{
        width: 30px;
        height: auto;
      }
    }
    .hero-video {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;

      @media (min-width: 992px){
        bottom: 40px;
      }

      .video-play-button{
        padding: 8px;
        border: 3px solid var(--color-primary);
        border-radius: 50%;

        .inner{
          width: 30px;
          height: 30px;
          background: var(--color-secondary);
          border: 2px solid var(--color-secondary);
          border-radius: 50%;
          color: var(--color-primary);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.4rem;
          transition: all 0.3s ease;

          @media (min-width: 992px){
            width: 50px;
            height: 50px;
          }

          i{
            font-size: 12px;

            @media (min-width: 992px){
              font-size: 20px;
            }
          }
        }
      }
    }

    .video-play-btn:hover {
      background: var(--color-secondary);
      color: #fff;
      transform: scale(1.1);
    }

    .video-label {
      font-size: 0.95rem;
      font-weight: 500;
      color: #fff;
    }

  }
}

/* === ABOUT SECTION === */

section.about{
  position: relative;
  color: var(--color-primary);

  .about-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;

    @media (min-width: 992px) {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
  }
}

.about-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 151, 92, 0.4);
  border-radius: 16px;
  width: 100%;
  min-height: 250px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.about-content {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
}

.about-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.about-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.about-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.about-image img {
  width: 100%;
  object-fit: contain;
  transform: translateY(10px); 
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(201, 151, 92, 0.2);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .about-card {
    min-height: 300px;
  }

  .about-content h3 {
    font-size: 1.2rem;
  }

}


/* ---- Earning Calculator */

section.earning-calculator {
  position: relative;
  overflow: hidden;
  color: var(--color-primary);
  text-align: center;

  .container {
    position: relative;
    z-index: 2;
  }

  .section-subtitle {
    max-width: 800px;
    margin: 16px auto 0;
  }

  .earnings-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 3px solid var(--color-secondary);
    max-width: 360px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    color: var(--color-primary);
    padding: 40px 20px;

    @media (min-width: 768px) {
      margin: 40px auto 0;
    }

    @media (min-width: 992px) {
      margin: 50px auto 0;
      flex: 0 0 380px;
    }

    .card-bg {
      position: absolute;
      inset: 0;
      z-index: 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        opacity: 0.8;
        border-radius: inherit;
      }
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(7, 14, 87, 0.932) 0%,    
        rgba(15, 20, 75, 0.4) 50%,  
        rgba(10, 13, 44, 0) 100%    
      );
      z-index: 1;
    }

    > *:not(.card-bg) {
      position: relative;
      z-index: 2;
    }

    .icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;

      @media (min-width: 568px){
        width: 70px;
        height: 70px;
      }
      @media (min-width: 992px){
        width: 80px;
        height: 80px;
      }

      img {
        width: 100%;
        height: auto;
      }
    }

    .btn-calculate {
      background: var(--color-primary);
      display: inline-flex;
      align-items: center;
      max-width: 300px;
      margin: 0 auto;
      padding: 8px 20px 8px 16px;
      gap: 10px;
      transition: background 0.3s ease-in-out, color 0.3s ease-in-out;

      img {
        width: 12px;
        height: auto;

        @media (min-width: 568px){
          width: 16px;
        }
        @media (min-width: 992px){
          width: 20px;
        }
      }

      p{
        color: var(--color-bg);
        text-decoration: none;
        margin-bottom: 0;
      }

      &:hover {
        background: var(--color-secondary);
        color: var(--color-primary);
      }
    }
  }
}

/* === FAQ SECTION === */

section.faq{

  .faq-items {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    margin-bottom: -200px;

    @media (min-width: 576px){
      margin-bottom: -240px;
    }
    @media (min-width: 992px){
      margin-bottom: -280px;
    }

    .faq-item {
      background: #201c2d;
      margin-bottom: 12px;
      border-radius: 10px;
      overflow: hidden;
      transition: background 0.3s ease;
      border: 1px solid var(--color-secondary);

      @media (min-width: 768px){
        margin-bottom: 14px;
      }
      @media (min-width: 992px){
        margin-bottom: 16px;
      }
      
      .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 12px 16px;
        font-size: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background 0.3s ease;

        @media (min-width: 768px){
          padding: 16px 20px;
        }
        @media (min-width: 992px){
          padding: 20px 24px;
        }

        .faq-title{
          color: #7c5c3d;
          font-size: 16px;
          font-weight: 600;
          text-align: start;

          @media (min-width: 768px){
            font-size: 20px;
          }
          @media (min-width: 992px){
            font-size: 24px;
          }
        }

        .faq-toggle {
          background: #5e4733;
          color: var(--color-primary);
          border-radius: 50%;
          width: 24px;
          height: 24px;
          text-align: center;
          font-size: 14px;
          font-weight: 300;
          transition: all 0.3s ease;
          display: flex;
          justify-content: center;
          align-items: center;

          @media (min-width: 768px){
            width: 40px;
            height: 40px;
            font-size: 28px;
            font-weight: 600;
          }
        }
      }

      .faq-answer {
        display: none;
        padding: 0 16px 12px;
        color: var(--color-primary);
        font-size: 14px;
        text-align: start;

        @media (min-width: 768px){
          font-size: 15px;
          padding: 0 20px 16px;
        }
        @media (min-width: 992px){
          font-size: 16px;
          padding: 0 24px 20px;
        }
      }
    }

    .faq-item.active{
      background: #4b382b;

      .faq-toggle {
        transform: rotate(180deg);
        background: var(--color-secondary);
      }

      .faq-question .faq-title{
        color: var(--color-secondary);
      }

      .faq-answer {
        display: block;
      }
    }
  }
}

/* === HOW IT  SECTION === */

section.how-it-works{
  position: relative;
  overflow: hidden;
  color: var(--color-primary);
  text-align: center;

  .container {
    position: relative;
    z-index: 2;
  }

  .cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;

    @media (min-width: 992px){
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .card{
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;

      @media (min-width: 568px){
        gap: 12px;
      }
      @media (min-width: 992px){
        gap: 16px;
      }

      img{
        width: auto;
        height: 24px;

        @media (min-width: 568px){
          height: 32px;
        }
        @media (min-width: 992px){
          height: 40px;
        }
      }
      p{
        max-width: 160px;

        @media (min-width: 768px){
          max-width: 192px;
        }

        @media (min-width: 992px){
          max-width: 200px;
        }
      }
    }
  }
}

/* === TESTIMONIAL SECTION === */

.testimonials {
  color: var(--color-primary);
  overflow: hidden;

  .testimonial-swiper{
    padding: 24px 0;

    @media (min-width: 576px){
      padding: 40px 0;
    }
    @media (min-width: 992px){
      padding: 56px 0;
    }

    .testimonial-item {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      border: 2px solid var(--color-secondary);
      padding: 25px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: radial-gradient(
        circle at center,
        #523e58 0%, 
        #2f2356 90%,  
        #231a56 100%  
      );

      .testimonial-content{
        position: relative;

        .testimonial-text {
          display: flex;
          gap: 16px;

          .testimonial-element {
            font-size: 7rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.1); 
            line-height: 0.6;
            font-family: Georgia, serif;
            pointer-events: none;
            user-select: none;
          }
          p{
            color: var(--color-text-light);
            margin: 24px 0;
          }
        }
        .testimonial-footer {
          display: flex;
          align-items: center;
          gap: 15px;

          .testimonial-image img {
            border-radius: 50%;
            object-fit: cover;
            display: flex;
            align-items: center;
            width: auto;
            height: 30px;

            @media (min-width: 568px){
              height: 45px;
            }
            @media (min-width: 992px){
              height: 60px;
            }
          }

          h5{
            color: var(--color-secondary);
            margin-bottom: 0;
          }

          p{
            color: var(--color-text-light);
            margin-bottom: 0;
          }
        }
      }
    }
  }

  

}

/* === RESPONSIVE GRID === */
.swiper {
  overflow: hidden;
}

.swiper-slide {
  width: 90%;
  max-width: 400px;
}

@media (min-width: 576px) {
  .swiper-slide {
    width: 45%;
  }
}

@media (min-width: 992px) {
  .swiper-slide {
    width: 30%;
  }
}


/* Multiple Income */

section.income {
  position: relative;
  overflow: hidden;
  color: var(--color-primary);
  text-align: center;

  .container {
    position: relative;
    z-index: 2;
  }

  .income-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 8px;

    @media (min-width: 992px) {
      grid-template-columns: repeat(4, 1fr); 
      gap: 32px;
    }

    .income-card {
      border: 2px solid var(--color-secondary);
      border-radius: 16px;
      padding: 12px 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;

      @media (min-width: 768px) {
        align-items: flex-start;
        padding: 24px 12px;
        text-align: left;
      }
      @media (min-width: 992px) {
        padding: 36px 16px;
      }
      
      img{
        width: auto;
        height: 24px;

        @media (min-width: 568px){
          height: 32px;
        }
        @media (min-width: 992px){
          height: 40px;
        }
      }
      h4 {
        @media (max-width: 568px){
          max-width: 100px;
        }
        @media (min-width: 992px){
          max-width: 140px;
        }
      }
      p {
        @media (max-width: 568px){
          max-width: 140px;
        }
      }
    }
  }
}



/* === BENEFITS  === */

section.benefits-club{
  position: relative;
  overflow: hidden;
  color: var(--color-primary);    
  text-align: center;

  .container {
    position: relative;
    z-index: 2;
  }

  .image-grid{
    display: none;

    @media (min-width: 992px){
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      z-index: 3;
    }

    img{
      width: 300px;

      @media (min-width: 1200px){
        width: 400px;
      }
      @media (min-width: 1600px){
        width: 500px;
      }
    }
  }

  

  .benefits-content {
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media (min-width: 992px){
      max-width: 600px;
      align-items: flex-start;
      text-align: left;
    }

    .section-header{
      text-align: center;
      z-index: 6;

      @media (min-width: 992px){
        text-align: left;
      }
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      z-index: 6;
      justify-items: center;

      @media (min-width: 992px){
        min-width: 350px;
        overflow-x: visible;
      }
      

      .benefit-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 25px 20px;
        text-align: center;
        transition: transform 0.3s ease, background 0.3s ease;
      }
    }
  
  }
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #c9a86b;
  color: #0a0d2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Images */
.benefits-right {
  display: none;
}

.benefit-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  outline: #ffffff;
}

/* === Desktop view === */
@media (min-width: 768px) {

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: stretch;
  }

  .btn.btn-outline {
    margin-top: 40px;
  }
}

@media (min-width: 992px){
  .benefits-right {
    display: block;
  }
  
.benefit-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  outline: #ffffff;
}
}



/* why choose us */

section.why-choose {
  position: relative;
  overflow: hidden;
  color: var(--color-primary);
  text-align: center;

  .container {
    position: relative;
    z-index: 2;
  }

  .features {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 8px;

    @media (min-width: 768px) {
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .feature-card {
      border-radius: 12px;
      border: 2px solid var(--color-secondary);
      padding: 16px;
      transition: all 0.3s ease;

      @media (min-width: 768px){
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
      }
      @media (min-width: 992px){
        padding: 32px;
      }

      img{
        width: 32px;
        height: 32px;

        @media (min-width: 568px){
          width: 40px;
          height: 40px;
        }
        @media (min-width: 992px){
          width: 48px;
          height: 48px;
        }
      }
      h4{

        @media (min-width: 768px){
          max-width: 180px;
          text-align: left;
        }
      }
    }
  }
}


@media (min-width: 992px){
  .section-header-wrap{
    display: flex;
    
    .section-header{
      flex: 1;
      text-align: left;
      margin-bottom: 0;
    }

    .section-header-content{
      display: flex;
      align-items: end;

      .section-subtitle{
        max-width: 360px;
        text-align: left;
      }
    }
  }
}

/* === SECURITY SECTION === */

section.security{
  position: relative;
  overflow: hidden;
  color: var(--color-primary);
  text-align: center;
  min-height: 945px;
  display: flex;
  align-items: center;

  .container {
    position: relative;
    z-index: 2;
  }

  .compliance-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    @media (min-width: 768px) {
      flex-direction: row;
      justify-content: center;
      gap: 12px;
    }
    @media (min-width: 992px) {
      gap: 16px;
    }
    @media (min-width: 1200px) {
      gap: 20px;
    }

    .compliance-card {
      background: #51237469;
      border-radius: 12px;
      border: 2px solid var(--color-primary);
      padding: 16px;
      width: 100%;
      max-width: 380px;
      color: var(--color-primary);
      transition: transform 0.3s ease, background 0.3s ease;

      @media (min-width: 768px) {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding: 16px 12px;
      }
      @media (min-width: 992px) {
        padding: 32px 20px;
      }

      .icon-box {
        width: 40px;
        height: 40px;
        background: var(--color-secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 8px;

        @media (min-width: 768px) {
          width: 50px;
          height: 50px;
          margin: auto 0 auto auto;
        }
        @media (min-width: 992px) {
          width: 80px;
          height: 80px;
        }

        img{
          width: auto;
          height: 20px;

          @media (min-width: 568px){
            height: 25px;
          }
          @media (min-width: 768px){
            height: 30px;
          }
          @media (min-width: 992px){
            height: 40px;
          }
        }
      }

      h4 {
        font-weight: 300;

        @media (min-width: 768px) {
          max-width: 140px;
          text-align: left;
        }
        @media (min-width: 992px) {
          max-width: 180px;
        }
      }
    }
  }
}


/* === CONTACT SECTION === */

section.contact {
  text-align: center;
  color: var(--color-primary);

  .contact-card {
    position: relative;
    margin-top: -150px;
    border-radius: 20px;
    padding: 40px 24px;
    border: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;

    .card-bg {
      position: absolute;
      inset: 0;
      z-index: 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: inherit;
      }
    }

    > *:not(.card-bg) {
      position: relative;
      z-index: 2;
    }

    h2 {
      font-size: 24px;
      line-height: 29px;
      margin: 0;

      @media (min-width: 768px) {
        font-size: 32px;
        line-height: 39px;
      }

      @media (min-width: 992px) {
        font-size: 40px;
        line-height: 49px;
      }
    }

    p {
      font-size: 16px;
      line-height: 19px;
      max-width: 650px;
      margin: 0 auto;

      @media (min-width: 768px) {
        font-size: 20px;
        line-height: 24px;
      }

      @media (min-width: 992px) {
        font-size: 24px;
        line-height: 29px;
      }
    }

    .btn-card {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 14px;
      background: var(--color-primary);
      color: #000b49;
      font-weight: 400;
      border-radius: 30px;
      padding: 12px 20px;
      text-decoration: none;
      transition: all 0.3s ease;
      width: fit-content;
      margin: 0 auto;

      i {
        color: var(--color-secondary);
      }

      &:hover {
        background: var(--color-secondary);
        color: var(--color-primary);

        i {
          color: var(--color-primary);
        }
      }

      @media (min-width: 992px) {
        font-size: 16px;
        padding: 16px 24px;
      }
    }

    @media (min-width: 768px) {
      gap: 24px;
      padding: 60px;
      border-radius: 25px;
      margin-top: -200px;
    }

    @media (min-width: 992px) {
      gap: 32px;
      padding: 80px;
      border-radius: 30px;
      margin-top: -250px;
    }
  }
}