/* Royal Paranet - Premium Style System */

:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B59020;
    --navy-blue: #002147;
    --clean-white: #FFFFFF;
    --soft-cream: #FFFDD0;
    --text-dark: #333333;
    --alert-red: #D8000C;
    --success-green: #4BB543;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--clean-white);
    font-size: 18px;
    /* Bigger font for readability */
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1.2;
}

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

/* Navbar */
.navbar {
    background: var(--navy-blue);
    color: var(--clean-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.guarantee {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBE6 100%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #D8000C;
    /* Red for agitation */
}

.sub-headline {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--navy-blue);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 0 var(--primary-gold-dark);
    transition: transform 0.1s;
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: none;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.scarcity-text {
    margin-top: 15px;
    font-weight: bold;
    color: var(--alert-red);
}

/* Problem Section */
.problem-section {
    padding: 50px 0;
    background: #FFF5F5;
}

.problem-section h2,
.solution-section h2,
.comparison-section h2,
.pricing-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.problem-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.problem-item .emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

/* Solution Section */
.solution-section {
    padding: 50px 0;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.features-list {
    text-align: left;
    background: var(--soft-cream);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
}

.feature {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Comparison Section */
.comparison-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.comparison-table {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 15px;
}

.col.cheap {
    background: #E0E0E0;
    color: #555;
}

.col.royal {
    background: var(--navy-blue);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.3);
    position: relative;
    transform: scale(1.02);
}

.col h3 {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.col.cheap h3 {
    color: #555;
    border-color: #999;
}

.col.royal h3 {
    color: var(--primary-gold);
}

.col ul {
    list-style: none;
    padding-left: 0;
}

.col li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.col.cheap li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.col.royal li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #002147 0%, #00152e 100%);
    color: white;
}

.pricing-section h2 {
    color: var(--primary-gold);
}

.promo-alert {
    text-align: center;
    background: var(--alert-red);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin: 0 auto 30px;
    display: table;
}

.pricing-card {
    background: white;
    color: var(--text-dark);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    border: 4px solid white;
}

.pricing-card.popular {
    border-color: var(--primary-gold);
    transform: scale(1.02);
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--navy-blue);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.card-header {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.size {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy-blue);
}

.select-btn {
    width: 100%;
    padding: 15px;
    background: var(--success-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

/* Form Section */
.form-section {
    padding: 50px 0 100px;
    /* Extra padding for sticky cta */
}

.form-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.form-box h3 {
    text-align: center;
    margin-bottom: 20px;
}

.warning-box {
    background: #FFF4CE;
    border-left: 5px solid #FFD700;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus {
    border-color: var(--navy-blue);
    outline: none;
}

.submit-btn {
    width: 100%;
    background: var(--primary-gold);
    color: var(--navy-blue);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 0 var(--primary-gold-dark);
}

.submit-btn:active {
    transform: translateY(4px);
    box-shadow: none;
}

.secure-text {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

/* Sticky CTA Bottom */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 999;
}

.sticky-btn {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: var(--primary-gold);
    color: var(--navy-blue);
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .size-grid {
        grid-template-columns: 1fr 1fr;
    }

    .color-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- REDESIGN PREMIUM STYLES --- */

/* Parallax Background */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('bg_v5.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
    /* Increased visibility */
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.glass-dark {
    background: rgba(0, 33, 71, 0.95);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Hero Enhancements */
.hero {
    background: transparent;
    /* Override old bg */
    padding-top: 50px;
    padding-bottom: 80px;
    overflow: hidden;
}

.badge-premium {
    display: inline-block;
    background: linear-gradient(90deg, #D4AF37, #FDC830);
    color: #002147;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    letter-spacing: 1px;
}

.text-gradient {
    background: linear-gradient(to right, #D8000C, #FF4500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: white;
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    color: #002147;
    border: 2px solid #D4AF37;
    animation: pulse 3s infinite;
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
    background: linear-gradient(45deg, #D4AF37, #FDC830);
    color: #002147;
    border: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
        transform: scale(1);
    }
}

/* Science Section */
.science-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f4f4f4 100%);
}

.section-header h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-header .underline {
    height: 10px;
    background: rgba(212, 175, 55, 0.3);
    width: 60%;
    margin: -15px auto 30px;
    z-index: -1;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.science-card {
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.science-card:hover {
    transform: translateY(-10px);
}

.icon-3d {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}

/* Comparison Redesign */
.comparison-wrapper {
    display: flex;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
}

.comp-col {
    flex: 1;
    padding: 40px;
}

.comp-col.before {
    background: linear-gradient(rgba(255, 238, 238, 0.9), rgba(255, 238, 238, 0.9)), url('bad_v5.jpg');
    background-size: cover;
    color: #555;
}

.comp-col.after {
    background: linear-gradient(rgba(232, 245, 233, 0.9), rgba(232, 245, 233, 0.9)), url('good_v5.jpg');
    background-size: cover;
    color: #002147;
    position: relative;
    border: 2px solid var(--success-green);
}

.tag-label {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.tag-label.bad {
    background: #FFCDD2;
    color: #C62828;
}

.tag-label.good {
    background: #C8E6C9;
    color: #2E7D32;
}

/* Testimonials */
.testi-section {
    padding: 80px 0;
    background: transparent;
}

.testi-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testi-card {
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    scroll-snap-align: center;
    border: 1px solid #eee;
}

.user-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.user-info strong {
    color: var(--navy-blue);
}

.user-info span {
    font-size: 0.9rem;
    color: #777;
}

/* Tips / Install Section */
.install-section {
    padding: 60px 0;
    background: #002147;
    color: white;
    text-align: center;
}

.install-section h2 {
    color: var(--primary-gold);
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    max-width: 200px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* FAQ Accordion */
.faq-section {
    padding: 60px 0;
    background: white;
}

.accordion {
    max-width: 700px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--navy-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.accordion-header.active:after {
    content: '-';
}

.accordion-body {
    display: none;
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

.accordion-body.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Fixes for New Sections */
@media (max-width: 600px) {
    .comparison-wrapper {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* Option Selection Styling */
.option-group {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.option-group h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    color: var(--navy-blue);
}

/* Color Grid */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.color-option {
    display: flex;
    align-items: center;
    border: 2px solid #eee;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}

.color-option:hover {
    border-color: var(--primary-gold);
}

.color-option.selected {
    border-color: var(--primary-gold);
    background: #FFFBE6;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Size Grid */
.size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.size-option {
    border: 2px solid #eee;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.size-option:hover {
    border-color: var(--primary-gold);
}

.size-option.selected {
    border-color: var(--primary-gold);
    background: #FFFBE6;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transform: scale(1.02);
}

.size-label {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark);
}

.size-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-top: 5px;
}

.size-option.best-seller {
    border-color: #FF8C00;
}

.size-option .badge {
    position: absolute;
    top: -10px;
    right: -5px;
    background: #FF8C00;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
}

/* Summary Box */
.selection-summary {
    text-align: center;
    background: var(--navy-blue);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selection-summary p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .size-grid {
        grid-template-columns: 1fr 1fr;
    }

    .color-grid {
        grid-template-columns: 1fr 1fr;
    }
}