/* Font Family */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    scroll-behavior: smooth;
}

/* Custom Variables */
:root {
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --red-500: #ef4444;
    --red-400: #f87171;
    --green-500: #10b981;
    --green-400: #34d399;
    --blue-500: #3b82f6;
    --purple-500: #8b5cf6;
    --amber-500: #f59e0b;
    --teal-500: #14b8a6;
}

/* Utility Classes */
.text-gold {
    color: var(--gold-400);
}

.text-gradient {
    background: linear-gradient(45deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gap-3 {
    gap: 1rem;
}

.gap-2 {
    gap: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-shimmer {
    animation: shimmer 2s infinite;
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

/* Urgency Bar */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: linear-gradient(45deg, #dc2626, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.urgency-icon {
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

.urgency-text {
    font-size: 0.875rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .urgency-text {
        font-size: 1rem;
    }
}

.urgency-highlight {
    color: #fde047;
    font-weight: 700;
}

.urgency-btn {
    background: #facc15;
    color: #000;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    transform: scale(1);
}

.urgency-btn:hover {
    background: #eab308;
    transform: scale(1.05);
}

.urgency-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-left: 0.5rem;
    transition: color 0.2s;
    cursor: pointer;
}

.urgency-close:hover {
    color: #fde047;
}

.urgency-progress {
    height: 4px;
    background: #7f1d1d;
}

.urgency-progress-bar {
    height: 100%;
    width: 25%;
    background: #facc15;
    animation: pulse 2s infinite;
}

/* Navbar */
#navbar {
    padding-top: 60px; /* Account for urgency bar */
    transition: all 0.3s;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
    height: 5rem;
    width: auto;
}

@media (min-width: 992px) {
    .navbar-logo {
        height: 6rem;
    }
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-400);
}

.btn-gold {
    background: linear-gradient(45deg, var(--gold-500), var(--gold-600));
    color: #000;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(45deg, var(--gold-600), #b45309);
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, var(--gray-900) 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 160px; /* Increased spacing to account for navbar and urgency bar */
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), transparent, rgba(217, 119, 6, 0.1));
    animation: pulse 4s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    animation: fadeIn 0.8s ease-out;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    margin-bottom: 3rem;
}

.btn-outline-gold {
    border: 2px solid var(--gold-500);
    color: var(--gold-400);
    background: transparent;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-outline-gold:hover {
    background: var(--gold-500);
    color: #000;
    transform: scale(1.05);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (min-width: 992px) {
    .trust-indicators {
        justify-content: flex-start;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gold-500);
    border-radius: 50%;
}

.hero-image-container {
    animation: scaleIn 1s ease-out 0.3s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.3), rgba(217, 119, 6, 0.3));
    border-radius: 1rem;
    filter: blur(2rem);
    transform: scale(1.1);
}

.hero-product-card {
    position: relative;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-product-img {
    width: 100%;
    height: auto;
    max-width: 28rem;
    margin: 0 auto;
    display: block;
    transition: transform 0.5s;
}

.hero-product-img:hover {
    transform: scale(1.05);
}

.hero-badge-top {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: var(--gold-500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-badge-bottom {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: linear-gradient(45deg, var(--gold-500), var(--gold-600));
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--gold-500);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-arrow::after {
    content: '';
    width: 0.25rem;
    height: 0.75rem;
    background: var(--gold-500);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(45deg, var(--gold-500), var(--gold-600));
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    text-align: center;
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .section-subtitle {
        font-size: 1.5rem;
    }
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #000000 50%, var(--gray-900) 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .problem-section {
        padding: 8rem 0;
    }
}

.problem-bg {
    position: absolute;
    inset: 0;
}

.problem-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.problem-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.problem-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s;
    animation: slideUp 0.6s ease-out;
}

.problem-card:hover {
    border-color: rgba(248, 113, 113, 0.4);
    transform: scale(1.05);
}

.problem-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 0.75rem;
}

.problem-desc {
    color: var(--gray-400);
    text-align: center;
    line-height: 1.6;
}

.problem-message {
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
    animation: scaleIn 0.6s ease-out;
}

@media (min-width: 992px) {
    .problem-message {
        padding: 3rem;
    }
}

.solution-teaser {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.2), rgba(217, 119, 6, 0.2));
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.scroll-hint {
    animation: bounce 2s infinite;
}

.scroll-text {
    display: inline-flex;
    align-items: center;
    color: var(--gold-400);
    font-size: 1.125rem;
    font-weight: 500;
    gap: 0.5rem;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, var(--gray-900) 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .solution-section {
        padding: 8rem 0;
    }
}

.solution-bg {
    position: absolute;
    inset: 0;
}

.solution-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.05), transparent, rgba(217, 119, 6, 0.05));
    animation: pulse 4s ease-in-out infinite;
}

.solution-bg::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    animation: float 6s ease-in-out infinite;
}

.benefit-card {
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid;
    transition: all 0.5s;
    animation: slideUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: scale(1.05);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.05), rgba(217, 119, 6, 0.05));
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
    border-color: rgba(239, 68, 68, 0.3);
}

.benefit-card-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.2));
    border-color: rgba(16, 185, 129, 0.3);
}

.benefit-card-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.2));
    border-color: rgba(59, 130, 246, 0.3);
}

.benefit-card-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.2));
    border-color: rgba(139, 92, 246, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
    transition: transform 0.3s;
}

@media (min-width: 992px) {
    .benefit-icon {
        font-size: 3.75rem;
    }
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

@media (min-width: 992px) {
    .benefit-title {
        font-size: 1.5rem;
    }
}

.benefit-card:hover .benefit-title {
    color: var(--gold-300);
}

.benefit-desc {
    color: var(--gray-300);
    line-height: 1.6;
    font-size: 1.125rem;
}

.transformation-package {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(217, 119, 6, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: scaleIn 0.6s ease-out;
    transition: all 0.5s;
}

@media (min-width: 992px) {
    .transformation-package {
        padding: 3rem;
    }
}

.transformation-package:hover {
    border-color: rgba(251, 191, 36, 0.5);
    animation: glow 3s ease-in-out infinite;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .package-icon {
        font-size: 3.75rem;
    }
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .package-title {
        font-size: 1.875rem;
    }
}

.package-desc {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

@media (min-width: 992px) {
    .package-desc {
        font-size: 1.25rem;
    }
}

.feature-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    text-align: center;
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-weight: 600;
    color: var(--gold-300);
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Ingredients Section */
.ingredients-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #000000 50%, var(--gray-900) 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .ingredients-section {
        padding: 8rem 0;
    }
}

.ingredients-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.ingredients-bg::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.ingredients-bg::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.ingredient-card {
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid;
    transition: all 0.5s;
    animation: slideUp 0.6s ease-out;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ingredient-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
    transform: scale(1.05);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.ingredient-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.05), rgba(217, 119, 6, 0.05));
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.ingredient-card:hover::before {
    opacity: 1;
}

.ingredient-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.2));
    border-color: rgba(16, 185, 129, 0.3);
}

.ingredient-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.2));
    border-color: rgba(245, 158, 11, 0.3);
}

.ingredient-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.2));
    border-color: rgba(59, 130, 246, 0.3);
}

.ingredient-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.2));
    border-color: rgba(139, 92, 246, 0.3);
}

.ingredient-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
    border-color: rgba(239, 68, 68, 0.3);
}

.ingredient-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(16, 185, 129, 0.2));
    border-color: rgba(20, 184, 166, 0.3);
}

.ingredient-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}

.ingredient-card:hover .ingredient-icon {
    transform: scale(1.1);
}

.ingredient-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.ingredient-card:hover .ingredient-name {
    color: var(--gold-300);
}

.ingredient-scientific {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.ingredient-benefits {
    color: var(--gray-300);
    line-height: 1.6;
}

.quality-assurance {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(217, 119, 6, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: scaleIn 0.6s ease-out;
}

@media (min-width: 992px) {
    .quality-assurance {
        padding: 3rem;
    }
}

.quality-item {
    text-align: center;
}

.quality-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quality-title {
    font-weight: 600;
    color: var(--gold-300);
    margin-bottom: 0.5rem;
}

.quality-desc {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.quality-message {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.award-icon {
    font-size: 1.5rem;
}

.award-text {
    color: var(--gold-300);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #000000 50%, var(--gray-900) 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .testimonials-section {
        padding: 8rem 0;
    }
}

.testimonials-bg {
    position: absolute;
    inset: 0;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent);
}

.testimonials-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    animation: shimmer 2s infinite;
}

.testimonial-slider {
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    animation: scaleIn 0.6s ease-out;
    transition: all 0.5s;
    text-align: center;
}

@media (min-width: 992px) {
    .testimonial-card {
        padding: 3rem;
    }
}

.testimonial-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    animation: glow 3s ease-in-out infinite;
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

@media (min-width: 992px) {
    .testimonial-quote {
        font-size: 1.5rem;
    }
}

.before-after {
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid;
}

.before {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.before h4 {
    color: var(--red-400);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.after {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.after h4 {
    color: var(--green-400);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.before p, .after p {
    color: var(--gray-400);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(45deg, var(--gold-500), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

.author-info {
    color: var(--gray-400);
    margin: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(251, 191, 36, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--gold-400);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-btn:hover {
    background: var(--gold-500);
    color: #000;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active, .dot:hover {
    background: var(--gold-500);
}

.testimonial-mini {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.3), rgba(17, 24, 39, 0.3));
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.1);
    transition: all 0.3s;
    animation: slideUp 0.6s ease-out;
    text-align: center;
}

.testimonial-mini:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.testimonial-mini .testimonial-stars {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author-mini h5 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.testimonial-author-mini span {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--gray-400);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-icon {
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .faq-section {
        padding: 8rem 0;
    }
}

.faq-bg {
    position: absolute;
    inset: 0;
}

.faq-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent);
}

.faq-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-700);
    margin-bottom: 1rem;
    transition: all 0.3s;
    animation: slideUp 0.6s ease-out;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
    padding-right: 1rem;
}

@media (min-width: 992px) {
    .faq-question h3 {
        font-size: 1.25rem;
    }
}

.faq-toggle {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    animation: fadeIn 0.3s ease-out;
}

.faq-answer::before {
    content: '';
    display: block;
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
}

.faq-support {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(217, 119, 6, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: scaleIn 0.6s ease-out;
    text-align: center;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 576px) {
    .support-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    transform: scale(1);
}

.support-btn:hover {
    transform: scale(1.05);
    text-decoration: none;
}

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

.support-btn.phone:hover {
    background: #059669;
    color: white;
}

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

.support-btn.whatsapp:hover {
    background: var(--green-600);
    color: white;
}

.support-btn.email {
    background: #2563eb;
    color: white;
}

.support-btn.email:hover {
    background: #1d4ed8;
    color: white;
}

.support-note {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--gray-800);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
}

.footer-desc {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold-400);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
}

.contact-icon {
    font-size: 1.125rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.copyright {
    color: var(--gray-400);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

@media (max-width: 767px) {
    .footer-badges {
        justify-content: center;
        margin-top: 1rem;
    }
}

.footer-badge {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 50;
    animation: scaleIn 0.5s ease-out;
    display: none;
}

.floating-cta.show {
    display: block;
}

.floating-cta-content {
    background: linear-gradient(45deg, var(--gold-500), var(--gold-600));
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(251, 191, 36, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.floating-cta-text {
    flex: 1;
}

.floating-cta-title {
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
}

.floating-cta-subtitle {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.75rem;
    margin: 0;
}

.floating-cta-btn {
    background: #000;
    color: var(--gold-400);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    transform: scale(1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.floating-cta-btn:hover {
    background: var(--gray-800);
    transform: scale(1.05);
}

.floating-cta-progress {
    background: rgba(0, 0, 0, 0.2);
    height: 0.25rem;
    border-radius: 0 0 0.75rem 0.75rem;
}

.floating-cta-progress-bar {
    background: #000;
    height: 100%;
    width: 75%;
    border-radius: 0 0 0.75rem 0.75rem;
    animation: pulse 2s infinite;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    animation: scaleIn 0.5s ease-out;
    display: none;
}

.floating-whatsapp.show {
    display: block;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 4rem;
    right: 0;
    background: white;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(0.5rem);
    transition: all 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.tooltip-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.tooltip-arrow {
    position: absolute;
    bottom: 0;
    right: 1rem;
    transform: translateY(50%) rotate(45deg);
    width: 0.5rem;
    height: 0.5rem;
    background: white;
}

.whatsapp-btn {
    background-color: var(--green-500);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: var(--green-600);
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Hide elements */
.faq-answer {
    display: none;
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .benefit-card .d-flex {
        text-align: center;
        flex-direction: column;
    }
    
    .benefit-icon {
        margin: 0 0 1rem 0;
    }

    .navbar-collapse.show {
        background-color: var(--gray-900); /* Dark background for mobile menu */
        position: absolute;
        top: 100%; /* Position below the navbar brand/toggler */
        left: 0;
        right: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1030; /* Ensure it's above other content */
    }

    .navbar-nav {
        align-items: flex-start; /* Align items to the left in mobile menu */
    }

    .navbar-nav .nav-item {
        width: 100%; /* Full width for nav items */
        text-align: center; /* Center text */
        padding: 0.5rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem; /* More padding for touch targets */
        display: block;
    }

    .navbar-nav .btn-gold {
        width: calc(100% - 2rem); /* Adjust button width */
        margin: 1rem auto; /* Center button */
        display: block;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1020; /* Ensure logo is above background elements */
    }

    .navbar-toggler {
        position: relative; /* Ensure z-index works */
        z-index: 1030; /* Ensure toggler is clickable above logo if overlap */
    }

    .navbar .container {
        padding-left: 1rem; /* Adjust padding to make space for centered logo */
        padding-right: 1rem; /* Adjust padding to make space for centered logo */
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .support-buttons {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hero-image-container {
        margin-top: 2rem; /* Add space between trust indicators and product image */
    }

    .hero-product-card {
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }

    .hero-badge-top {
        top: -0.75rem;
        left: -0.75rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero-badge-bottom {
        bottom: -0.75rem;
        right: -0.75rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .trust-indicators {
        gap: 1rem; /* Reduce gap between trust items on small screens */
        margin-top: 2rem; /* Add some top margin to separate from hero buttons */
    }
}