/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-header .container {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Top Header */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.logo-section a {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.official-website {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/public_content/background-hero.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    text-align: center;
    color: white;
}

.brand-name {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    margin-right: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
}

.view-more-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 50px 0;
    background: #ecf0f1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
    height: auto;
    min-height: 320px;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    color: #34495e;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card.featured {
    border: 3px solid #34495e;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-placeholder {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
    color: #2c3e50;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.product-button {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 15px 12px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #ecf0f1;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #bdc3c7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-align: center;
    min-height: 300px;
}

.reviewer-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ecf0f1;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #f39c12;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.reviewer {
    font-weight: 600;
    color: #34495e;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left p {
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.footer-left .affiliate-disclosure {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    color: #687c8d;
}

.footer-right h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 80px 0;
    background: white;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-stat {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brand-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
}

/* Contact Form Section */
.contact {
    padding: 60px 0;
    background: #ecf0f1;
}

.contact-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-wrapper h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-intro {
    margin-bottom: 2.5rem;
    text-align: left;
}

.contact-intro p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

.contact-form input[type="text"]:not(.form-row input),
.contact-form input[type="email"],
.contact-form input[type="text"],
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #34495e;
}

.contact-form textarea {
    margin-bottom: 1.5rem;
    resize: vertical;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 73, 94, 0.3);
}

.success-message {
    background: linear-gradient(135deg, #009922, #008b06);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(133, 153, 0, 0.25);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.success-message h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }
    
    .brand-name-header {
        font-size: 1.5rem;
    }
    
    .official-website {
        display: none;
    }
    
    .tagline {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .features,
    .products,
    .about,
    .reviews,
    .trust-indicators,
    .contact {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .affiliate-disclosure {
        margin: 0;
    }
}

/* Privacy Policy Styles */
.privacy-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.privacy-intro {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.last-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.privacy-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.privacy-intro-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ecf0f1;
}

.privacy-intro-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
}

.privacy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.privacy-section li strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 40px;
    }
    
    .privacy-hero h1 {
        font-size: 2.2rem;
    }
    
    .privacy-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-text {
        padding: 2rem;
        margin: 0 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 1.8rem;
    }
    
    .privacy-text {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #2c3e50, #34495e);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .brand-name-header {
        font-size: 1.3rem;
    }
    
    .logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .feature-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .product-card h3 {
        padding: 1rem 1rem 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 15px;
        font-size: 1rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
