/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

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

/* HEADER */
.tavinor-flowrest-9305-header-wrap {
    background-color: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #CFFF35;
    padding: 15px 0;
}

.tavinor-flowrest-9305-header-wrap::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #CFFF35;
    box-shadow: 0 0 10px #CFFF35;
    animation: pulsate-line 2s infinite ease-in-out;
}

@keyframes pulsate-line {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.tavinor-flowrest-9305-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tavinor-flowrest-9305-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #CFFF35;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tavinor-flowrest-9305-nav-menu {
    display: flex;
}

.tavinor-flowrest-9305-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.tavinor-flowrest-9305-nav-link {
    text-decoration: none;
    color: #FFF;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.tavinor-flowrest-9305-nav-link:hover {
    color: #CFFF35;
}

/* MOBILE MENU */
.tavinor-flowrest-9305-menu-toggle {
    display: none;
}

.tavinor-flowrest-9305-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.tavinor-flowrest-9305-burger span {
    width: 30px;
    height: 3px;
    background-color: #CFFF35;
    border-radius: 2px;
}

/* HERO SECTION (Variant 4: Red border lines) */
.tavinor-flowrest-9305-hero-section {
    padding: 80px 0;
    border: 4px solid #FF0000; /* Red border line per requirement */
    margin: 40px 20px;
}

.tavinor-flowrest-9305-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tavinor-flowrest-9305-hero-image-box {
    flex: 1;
}

.tavinor-flowrest-9305-hero-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    filter: grayscale(0.5);
    border: 1px solid #333;
}

.tavinor-flowrest-9305-hero-content-box {
    flex: 1.2;
}

.tavinor-flowrest-9305-h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #FFF;
    margin-bottom: 20px;
}

.tavinor-flowrest-9305-hero-sub {
    font-size: 1.4rem;
    color: #CFFF35;
    margin-bottom: 25px;
}

.tavinor-flowrest-9305-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #B0B0B0;
}

/* BUTTONS */
.tavinor-flowrest-9305-btn-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #CFFF35;
    color: #0A0C10;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
}

.tavinor-flowrest-9305-btn-primary:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.6);
    transform: translateY(-2px);
}

.tavinor-flowrest-9305-btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #CFFF35;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid #CFFF35;
    cursor: pointer;
    text-align: center;
}

.tavinor-flowrest-9305-btn-secondary:hover {
    background-color: #CFFF35;
    color: #0A0C10;
}

/* REVIEWS (Variant 2: Scrollable without JS) */
.tavinor-flowrest-9305-reviews-section {
    padding: 80px 0;
    background-color: #0F1218;
}

.tavinor-flowrest-9305-h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #FFF;
}

.tavinor-flowrest-9305-quote-block {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    border-left: 5px solid #CFFF35;
    padding-left: 30px;
}

.tavinor-flowrest-9305-blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.tavinor-flowrest-9305-cite {
    font-size: 1.1rem;
    color: #CFFF35;
    font-weight: bold;
}

.tavinor-flowrest-9305-reviews-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.tavinor-flowrest-9305-reviews-slider::-webkit-scrollbar {
    height: 8px;
}

.tavinor-flowrest-9305-reviews-slider::-webkit-scrollbar-track {
    background: #0A0C10;
}

.tavinor-flowrest-9305-reviews-slider::-webkit-scrollbar-thumb {
    background: #CFFF35;
    border-radius: 4px;
}

.tavinor-flowrest-9305-review-card {
    flex: 0 0 350px;
    background-color: #1A1D24;
    padding: 30px;
    border-radius: 10px;
    scroll-snap-align: center;
    border: 1px solid #333;
}

.tavinor-flowrest-9305-review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #CCC;
}

.tavinor-flowrest-9305-review-author {
    color: #CFFF35;
    font-weight: 700;
}

/* WHO IT'S FOR (Variant 1: Photo + Detailed) */
.tavinor-flowrest-9305-who-section {
    padding: 100px 0;
}

.tavinor-flowrest-9305-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #AAA;
}

.tavinor-flowrest-9305-who-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tavinor-flowrest-9305-who-list {
    flex: 1;
    list-style: none;
}

.tavinor-flowrest-9305-who-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.tavinor-flowrest-9305-who-icon {
    color: #CFFF35;
    font-weight: 900;
    font-size: 1.2rem;
    background: rgba(207, 255, 53, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.tavinor-flowrest-9305-who-image {
    flex: 1;
}

.tavinor-flowrest-9305-img-standard {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #CFFF35;
    box-shadow: 10px 10px 0px rgba(207, 255, 53, 0.2);
}

/* BENEFITS */
.tavinor-flowrest-9305-benefits-section {
    padding: 80px 0;
    background-color: #0F1218;
}

.tavinor-flowrest-9305-benefits-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tavinor-flowrest-9305-benefits-content {
    flex: 1;
}

.tavinor-flowrest-9305-benefits-image {
    flex: 1;
}

.tavinor-flowrest-9305-benefits-list {
    list-style: none;
    margin-top: 30px;
}

.tavinor-flowrest-9305-benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.tavinor-flowrest-9305-benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
    font-weight: bold;
}

/* PRICING (Variant 2: 5 items, Lined Border) */
.tavinor-flowrest-9305-pricing-section {
    padding: 100px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    position: relative;
}

.tavinor-flowrest-9305-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tavinor-flowrest-9305-price-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #1A1D24;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #CFFF35;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.tavinor-flowrest-9305-price-card:hover {
    transform: scale(1.02);
}

.tavinor-flowrest-9305-featured {
    border-width: 3px;
    box-shadow: 0 0 30px rgba(207, 255, 53, 0.15);
    background-color: #21252D;
}

.tavinor-flowrest-9305-price-title {
    font-size: 1.6rem;
    color: #FFF;
    margin-bottom: 15px;
}

.tavinor-flowrest-9305-price-val {
    font-size: 2.2rem;
    color: #CFFF35;
    font-weight: 800;
    margin-bottom: 25px;
}

.tavinor-flowrest-9305-price-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.tavinor-flowrest-9305-price-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #B0B0B0;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

/* FAQ */
.tavinor-flowrest-9305-faq-section {
    padding: 100px 0;
}

.tavinor-flowrest-9305-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.tavinor-flowrest-9305-faq-item {
    background-color: #161A21;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.tavinor-flowrest-9305-faq-summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFF;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tavinor-flowrest-9305-faq-summary::-webkit-details-marker {
    display: none;
}

.tavinor-flowrest-9305-faq-summary::after {
    content: '+';
    color: #CFFF35;
    font-size: 1.5rem;
}

.tavinor-flowrest-9305-faq-item[open] .tavinor-flowrest-9305-faq-summary::after {
    content: '-';
}

.tavinor-flowrest-9305-faq-answer {
    padding: 0 25px 20px;
    color: #AAA;
}

/* EXTRA TEXT SECTIONS */
.tavinor-flowrest-9305-text-section {
    padding: 80px 0;
    border-bottom: 1px solid #1a1d24;
}

.tavinor-flowrest-9305-text-list {
    margin: 20px 0;
    list-style: none;
    padding-left: 20px;
}

.tavinor-flowrest-9305-text-list li {
    margin-bottom: 10px;
    color: #B0B0B0;
}

.tavinor-flowrest-9305-text-list li::before {
    content: '▪';
    color: #CFFF35;
    margin-right: 10px;
}

/* FORM SECTION */
.tavinor-flowrest-9305-form-section {
    padding: 100px 0;
    background-color: #0F1218;
}

.tavinor-flowrest-9305-form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1A1D24;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #333;
}

.tavinor-flowrest-9305-form-sub {
    text-align: center;
    margin-bottom: 40px;
    color: #AAA;
}

.tavinor-flowrest-9305-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tavinor-flowrest-9305-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tavinor-flowrest-9305-label {
    font-size: 0.9rem;
    color: #CFFF35;
    font-weight: 600;
}

.tavinor-flowrest-9305-input, 
.tavinor-flowrest-9305-textarea {
    background-color: #0A0C10;
    border: 1px solid #333;
    padding: 15px;
    color: #FFF;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.tavinor-flowrest-9305-input:focus, 
.tavinor-flowrest-9305-textarea:focus {
    border-color: #CFFF35;
}

.tavinor-flowrest-9305-textarea {
    height: 120px;
    resize: none;
}

.tavinor-flowrest-9305-checkbox-group {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.85rem;
    color: #AAA;
}

.tavinor-flowrest-9305-checkbox-group a {
    color: #CFFF35;
}

/* FOOTER */
.tavinor-flowrest-9305-footer {
    padding: 60px 0 30px;
    background-color: #0A0C10;
    border-top: 1px solid #333;
}

.tavinor-flowrest-9305-footer-content {
    text-align: center;
}

.tavinor-flowrest-9305-footer-copy {
    margin-bottom: 10px;
    font-weight: bold;
}

.tavinor-flowrest-9305-footer-contact,
.tavinor-flowrest-9305-footer-address {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.tavinor-flowrest-9305-footer-contact a {
    color: #CFFF35;
    text-decoration: none;
}

.tavinor-flowrest-9305-footer-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tavinor-flowrest-9305-footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.tavinor-flowrest-9305-footer-links a:hover {
    color: #CFFF35;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tavinor-flowrest-9305-hero-grid,
    .tavinor-flowrest-9305-who-content,
    .tavinor-flowrest-9305-benefits-grid {
        flex-direction: column;
        text-align: center;
    }
    .tavinor-flowrest-9305-h1 {
        font-size: 2.5rem;
    }
    .tavinor-flowrest-9305-benefits-grid {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .tavinor-flowrest-9305-burger {
        display: flex;
    }
    .tavinor-flowrest-9305-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0A0C10;
        padding: 20px;
        border-bottom: 2px solid #CFFF35;
    }
    .tavinor-flowrest-9305-nav-list {
        flex-direction: column;
        gap: 15px;
    }
    .tavinor-flowrest-9305-menu-toggle:checked ~ .tavinor-flowrest-9305-nav-menu {
        display: block;
    }
    .tavinor-flowrest-9305-form-card {
        padding: 25px;
    }
}