/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    margin-left: 30px;
    color: #333;
    font-weight: 500;
}
/* Mobile toggle button */
.mobile-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-toggle span:nth-child(1) {
    top: 0px;
}

.mobile-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-toggle span:nth-child(3) {
    top: 18px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
    background: #d4b24a;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
    background: #d4b24a;
}.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: all 0.3s ease;
    display: none;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 50px 20px;
}

.mobile-nav a {
    margin: 15px 0;
    font-size: 22px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4b24a;
    transition: width 0.3s ease;
}

.mobile-nav a:hover {
    color: #d4b24a;
}

.mobile-nav a:hover:after {
    width: 100%;
}

.mobile-nav .purchase-btn {
    background-color: #d4b24a;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(212, 178, 74, 0.3);
}

.mobile-nav .purchase-btn:hover {
    background-color: #c19f3a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 178, 74, 0.4);
}

.mobile-nav .purchase-btn:after {
    display: none;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
.desktop-nav .purchase-btn {
    background-color: #d4b24a;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.desktop-nav .purchase-btn:hover {
    background-color: #c19f3a;
}
/* Utility classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: #d4b24a;
}

/* Header styles */
.header-fixed {
    padding: 15px 0;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f0f0f0;
}

.header-fixed.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #d4b24a;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 30px;
    color: #333;
    font-weight: 500;
}

.nav-links a.active {
    color: #d4b24a;
}

.purchase-btn {
    background-color: #d4b24a;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.purchase-btn:hover {
    background-color: #c19f3a;
}

/* Reviews Header Styles */
.reviews-content {
    padding: 120px 0 60px;
    min-height: 500px;
    background-color: #fff;
}

.reviews-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 30px;
}

.reviews-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #d4b24a;
}

.reviews-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: #d4b24a;
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #d4b24a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    font-size: 14px;
}

.author-type {
    font-size: 12px;
    color: #666;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.simple-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.footer-text {
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    overflow: hidden;
}

.social-icon:hover {
    background-color: #d4b24a;
    color: white;
    transform: translateY(-5px);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.purchase-btn) {
        display: none;
    }
        .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .reviews-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .reviews-title {
        font-size: 30px;
    }
    
    .reviews-header {
        padding: 30px 0;
    }
    
    .reviews-content {
        padding: 100px 0 40px;
    }
}