@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  font-family: 'Outfit', sans-serif;
}

.feature-box {
  position: relative;
  background: linear-gradient(135deg, #FFB703 0%, #b98300 100%);
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 1px 7px #0000007a;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px #b1a03c69, 0 0 20px #372728c2;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.05));
  transform: rotate(25deg);
  animation: shine 6s linear infinite;
  z-index: 1;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

.feature-box h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.feature-box p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #d9d9d9;
  position: relative;
  z-index: 2;
}

.feature-box i {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* Product Card Styles */
.card-headertavo {
    background: linear-gradient(135deg, #FFB703 0%, #755300 100%);
    color: white;
    padding: 28px 24px 0px;
    text-align: left;
    position: relative;
    overflow: hidden;
    height: 220px;
    border-radius: 10px 10px 0 0;
}

.card-headertavo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #ffffff;
    clip-path: path('M0,60 C60,65 120,60 220,30 C380,-10 400,49 10000,30 L426,80 L0,100 Z');
}

.tavocard {
    background: linear-gradient(194deg, #ffffff 19%, #ffffff 75%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.48);
    transition: all 0.3s ease;
}

.tavocard:hover {
    background-image: linear-gradient(194deg, #ffffff 19%, #ffffff 75%);
    box-shadow: 0 1px 7px rgba(157, 204, 255, 0.4);
    transform: translateY(-5px);
}

.order-btntavo {
    background: linear-gradient(135deg, #FFB703 0%, #b98300 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-block;
}

.order-btntavo:hover {
    background: linear-gradient(135deg, #e9a700, #b98300);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(218 243 33 / 30%);
    color: #fff;
}


/* Features List Styles */
.features-list {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.5;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:before {
    content: "✓";
    color: #755300;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.features-list li:hover {
    background-color: #f9f9f9;
    transform: translateX(5px);
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    color: white;
    font-family: Arial, sans-serif;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    margin: 10px 0;
}

.stat-item img {
    width: 40px;
    margin-bottom: 10px;
}

.stat-item h4 {
    margin: 0;
}

.stat-item p {
    color: #aaa;
    margin-top: 5px;
}

.stat-divider {
    border-left: 1px solid #333;
    margin: 0 20px;
}

@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-divider {
        border-left: none;
        border-top: 1px solid #333;
        width: 80%;
        margin: 20px 0;
        height: 1px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .btn-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-headertavo::after {
        clip-path: path('M0,80 C68,80 160,80 256,52 C506,-7 400,49 10000,30 L426,80 L0,100 Z');
    }
    
    .btn-group .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

a:hover {
    text-decoration: 0;
}

.ogtext {
    color: #000;
}

.ogactive {
    background: #cd9304;
}

.ogimage {
    margin: auto 6px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
    margin-bottom: 15px;
}

.ogbackground {
    background: #e9a703;
    box-shadow: 0 1px 7px #0000007a;
    border-radius: 7px;
    overflow: hidden;
}

.ogm {
    padding: 0.9rem;
    border-radius: 0;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}

.ogbutton {
    background-color: #B09385;
    height: 41px;
    width: 210px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', Sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}
.ogbutton:hover {
    background-color: #0F0909;
}

.btn:hover {
    background: #ffb703c2;
    color:#fff;
}

.ogcard .card-text ul {
    list-style: none;
    padding-left: 0;
}

.card-text {
    padding: 0 10px;
    margin: 0;
}

.ogprice {
    font-size: 20px;
    font-weight: 500;
}

.product-card {
    opacity: 0;
    transform: rotateX(10deg) translateY(40px) scale(0.95);
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
}

.product-card.show {
    opacity: 1;
    transform: rotateX(0deg) translateY(0px) scale(1);
    max-height: 2000px;
    pointer-events: auto;
    visibility: visible;
}

.offer {
    font-family: "Inter Tight", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: -1px 12px 14px rgb(255 255 255 / 19%);
}

@media (max-width: 575px) {
.ogimage {
    margin: auto;   
}
}

.silder-page {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), 
                url(/templates/Customer-WHMCS-templates/img/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
}

.pageog {
    max-width: 1000px;
    margin: 0 auto;
}

.pageog h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pageog h1 span {
    font-family: "Inter Tight", Sans-serif;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: 0px 1px 14px #bfaf3e99;
    color: #dedede;
}

.pageog p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.tavo-modern-faq {
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.tavo-faq-header {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    position: relative;
}

.tavo-faq-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tavo-faq-title-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    color: #4dabf7;
}

.tavo-faq-subtitle {
    font-size: 1.1rem;
    color: #dee2e6;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.tavo-faq-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #FFB703, #9d7002);
}

.tavo-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.tavo-faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.tavo-faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.tavo-faq-icon-wrapper {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tavo-faq-item-icon {
    width: 24px;
    height: 24px;
    color: #755300;
    flex-shrink: 0;
}

.tavo-faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    flex: 1;
    text-align: left;
}

.tavo-faq-arrow {
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #fff;
    flex-shrink: 0;
}

.tavo-faq-item.tavo-active .tavo-faq-arrow {
    transform: rotate(180deg);
}

.tavo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    background-color: rgba(255, 255, 255, 0.95);
}

.tavo-faq-item.tavo-active .tavo-faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.tavo-faq-answer p {
    margin: 0;
    padding-top: 15px;
    color: #333;
    line-height: 1.7;
    font-size: 1rem;
}

/* Animation for active item */
.tavo-faq-item.tavo-active {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tavo-modern-faq {
        padding: 20px;
    }
    
    .tavo-faq-question {
        padding: 16px 20px;
    }
    
    .tavo-faq-question h3 {
        font-size: 1rem;
    }
    
    .tavo-faq-icon-wrapper {
        margin-right: 12px;
    }
    
    .tavo-faq-item-icon {
        width: 20px;
        height: 20px;
    }
    
    .tavo-faq-arrow {
        width: 18px;
        height: 18px;
    }
    
    .tavo-faq-item.tavo-active .tavo-faq-answer {
        padding: 0 20px 16px;
    }
}
