/* 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;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 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);
}
.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;
}
.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;
}

/* Main Product Section */
.logo-image {
    width: 350px;
    height: 350px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.main-product {
    padding: 100px 0 50px;
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
}

.product-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-image {
    flex: 0 0 45%;
    max-width: 350px;
    transition: transform 0.4s ease;
}

.product-image:hover {
    transform: scale(1.02);
}
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}
.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-info {
    flex: 0 0 45%;
    position: relative;
}

.product-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: -0.5px;
    border-bottom: 2px solid #d4b24a;
    padding-bottom: 10px;
    display: inline-block;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.current-price {
    font-size: 38px;
    font-weight: 700;
    color: #333;
}

.original-price {
    font-size: 20px;
    color: #999;
    margin-left: 10px;
    text-decoration: line-through;
    font-weight: 400;
}

.btn-buy {
    display: inline-block;
    background-color: #d4b24a;
    color: white;
    padding: 12px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(212, 178, 74, 0.2);
}

.product-description {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.product-description h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    color: #d4b24a;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.benefits-list .check-icon {
    color: #d4b24a;
    margin-right: 10px;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

/* Why SKG Setups Section */
.why-skg {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d4b24a;
    margin: 15px auto 0;
}

.why-skg-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-skg-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.highlight-text {
    font-size: 18px !important;
    font-weight: 600;
    color: #333 !important;
    border-left: 4px solid #d4b24a;
    padding-left: 15px;
    margin-top: 30px !important;
    font-style: italic;
}

/* Features section */
.features {
    padding: 60px 0;
}

.features-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.feature-name {
    font-weight: 600;
}

.feature-description {
    color: #666;
}

/* Divider */
.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px 0;
}

/* Features Section */
.features {
    padding: 30px 0 60px;
}

.features-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.feature-name {
    font-weight: 600;
}

.feature-description {
    color: #666;
}

/* Testimonials section */
.testimonials {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.testimonials-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.testimonial-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #d4b24a;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #d4b24a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: bold;
    font-size: 14px;
}

.author-type {
    font-size: 12px;
    color: #666;
}

.testimonial-join {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 14px;
}

/* Footer */
/* Footer styling updates for pricing page */

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) {
    .product-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-branding {
        text-align: center;
        margin: 0 auto 30px;
    }
    
    .footer-columns {
        justify-content: center;
    }
}

@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;
    }
    .feature {
        flex-direction: column;
    }
    
    .feature-name, .feature-description {
        width: 100%;
    }
}

/* Specific layout for the features section to match the screenshot */
@media (min-width: 768px) {
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .feature {
        flex-direction: column;
    }
}