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

html {
    scroll-behavior: smooth;
}

body.terqiroRestSightFlow_BodyMain {
    background-color: #03070A;
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Typography */
.terqiroRestSightFlow_H1Title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #42FFD5;
}

.terqiroRestSightFlow_H2Title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #42FFD5;
    text-align: center;
}

.terqiroRestSightFlow_SubText {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    font-size: 1.2rem;
    color: #A0AEC0;
}

/* Header Styles */
.terqiroRestSightFlow_HeaderOuter {
    background-color: rgba(3, 7, 10, 0.95);
    border-bottom: 2px solid #42FFD5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.terqiroRestSightFlow_ContainerHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terqiroRestSightFlow_LogoText {
    font-size: 28px;
    font-weight: 800;
    color: #42FFD5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.terqiroRestSightFlow_NavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.terqiroRestSightFlow_NavLink {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

.terqiroRestSightFlow_NavLink:hover {
    color: #42FFD5;
    text-shadow: 0 0 8px rgba(66, 255, 213, 0.5);
}

.terqiroRestSightFlow_NavCheckbox,
.terqiroRestSightFlow_BurgerBtn {
    display: none;
}

/* Buttons */
.terqiroRestSightFlow_BtnPrimary {
    display: inline-block;
    background-color: #42FFD5;
    color: #03070A;
    padding: 16px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(66, 255, 213, 0.3);
}

.terqiroRestSightFlow_BtnPrimary:hover {
    background-color: #38e0ba;
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.6);
}

.terqiroRestSightFlow_BtnSecondary {
    display: inline-block;
    background-color: transparent;
    color: #42FFD5;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #42FFD5;
    cursor: pointer;
}

.terqiroRestSightFlow_BtnSecondary:hover {
    background-color: rgba(66, 255, 213, 0.1);
}

/* Hero Section */
.terqiroRestSightFlow_HeroSection {
    padding: 100px 0;
}

.terqiroRestSightFlow_HeroWrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.terqiroRestSightFlow_HeroImagesCol {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.terqiroRestSightFlow_HeroImageCard {
    background: #0A1218;
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid #42FFD5;
}

.terqiroRestSightFlow_HeroImg {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.terqiroRestSightFlow_HeroImgText {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #CBD5E0;
}

.terqiroRestSightFlow_HeroTextCol {
    flex: 1.2;
}

.terqiroRestSightFlow_HeroSub {
    font-size: 1.5rem;
    color: #A0AEC0;
    margin-bottom: 25px;
}

.terqiroRestSightFlow_HeroDesc {
    margin-bottom: 20px;
    color: #E2E8F0;
}

/* Pricing Section */
.terqiroRestSightFlow_PricingSection {
    padding: 100px 0;
    background-color: #050B10;
}

.terqiroRestSightFlow_PriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.terqiroRestSightFlow_PriceCard {
    background-color: #0A1218;
    border: 1px solid #1A262F;
    padding: 40px 30px;
    border-radius: 12px;
    width: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.4s;
}

.terqiroRestSightFlow_PriceCard:hover {
    transform: translateY(-10px);
    border-color: #42FFD5;
}

.terqiroRestSightFlow_PriceCardFeatured {
    border: 2px solid #42FFD5;
    background-color: #0E1A23;
}

.terqiroRestSightFlow_PriceTitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #42FFD5;
}

.terqiroRestSightFlow_PriceValue {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.terqiroRestSightFlow_PriceList {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.terqiroRestSightFlow_PriceList li {
    margin-bottom: 12px;
    color: #CBD5E0;
    padding-left: 20px;
    position: relative;
}

.terqiroRestSightFlow_PriceList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #42FFD5;
}

.terqiroRestSightFlow_PromoLabel {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #42FFD5;
    color: #03070A;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Who Section */
.terqiroRestSightFlow_WhoSection {
    padding: 100px 0;
}

.terqiroRestSightFlow_WhoGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.terqiroRestSightFlow_WhoItem {
    flex: 1 1 300px;
    background: #0A1218;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.terqiroRestSightFlow_WhoIconLine {
    height: 4px;
    width: 60px;
    background: #42FFD5;
    margin-bottom: 20px;
}

.terqiroRestSightFlow_WhoLabel {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #42FFD5;
}

.terqiroRestSightFlow_DiscountBadge {
    display: inline-block;
    margin-top: 15px;
    color: #42FFD5;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px dashed #42FFD5;
    padding: 4px 10px;
}

.terqiroRestSightFlow_DecorativeLine {
    height: 1px;
    background: linear-gradient(to right, transparent, #42FFD5, transparent);
    margin-top: 60px;
}

/* Benefits Section */
.terqiroRestSightFlow_BenefitsSection {
    padding: 100px 0;
    background-color: #050B10;
}

.terqiroRestSightFlow_BenefitsWrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.terqiroRestSightFlow_BenefitsText {
    flex: 1;
}

.terqiroRestSightFlow_BenefitChecklist {
    list-style: none;
    margin-top: 30px;
}

.terqiroRestSightFlow_CheckItem {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.terqiroRestSightFlow_CheckItem::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #42FFD5;
    margin-right: 15px;
    border-radius: 2px;
}

.terqiroRestSightFlow_BenefitsImage {
    flex: 1;
}

.terqiroRestSightFlow_ImgFull {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(66, 255, 213, 0.1);
}

/* Quote Section */
.terqiroRestSightFlow_QuoteSection {
    padding: 100px 0;
}

.terqiroRestSightFlow_QuoteBox {
    background-color: #0A1218;
    padding: 60px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #1A262F;
}

.terqiroRestSightFlow_Blockquote {
    font-size: 1.8rem;
    font-style: italic;
    color: #E2E8F0;
    margin-bottom: 30px;
    position: relative;
}

.terqiroRestSightFlow_Blockquote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -40px;
    left: -30px;
    color: #42FFD5;
    opacity: 0.3;
}

.terqiroRestSightFlow_QuoteAuthor {
    display: block;
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;
    color: #42FFD5;
}

.terqiroRestSightFlow_QuoteList {
    margin-top: 40px;
    border-top: 1px solid #1A262F;
    padding-top: 20px;
}

.terqiroRestSightFlow_Details {
    margin-bottom: 15px;
}

.terqiroRestSightFlow_Summary {
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #CBD5E0;
}

.terqiroRestSightFlow_Summary:hover {
    color: #42FFD5;
}

.terqiroRestSightFlow_DetailsContent {
    padding: 15px;
    color: #A0AEC0;
}

/* FAQ Section */
.terqiroRestSightFlow_FaqSection {
    padding: 100px 0;
    background-color: #050B10;
}

.terqiroRestSightFlow_FaqAccordion {
    max-width: 800px;
    margin: 0 auto;
}

.terqiroRestSightFlow_FaqItem {
    margin-bottom: 15px;
    background: #0A1218;
    border: 1px solid #1A262F;
    border-radius: 6px;
}

.terqiroRestSightFlow_FaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
}

.terqiroRestSightFlow_FaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #42FFD5;
}

.terqiroRestSightFlow_FaqBody {
    padding: 0 20px 20px;
    color: #A0AEC0;
}

/* Form Section */
.terqiroRestSightFlow_FormSection {
    padding: 100px 0;
}

.terqiroRestSightFlow_FormBox {
    background-color: #0A1218;
    padding: 60px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    border-top: 4px solid #42FFD5;
}

.terqiroRestSightFlow_FormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #A0AEC0;
}

.terqiroRestSightFlow_ContactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terqiroRestSightFlow_FormGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terqiroRestSightFlow_FormLabel {
    font-size: 0.9rem;
    color: #42FFD5;
    font-weight: 600;
}

.terqiroRestSightFlow_Input,
.terqiroRestSightFlow_Textarea {
    background-color: #03070A;
    border: 1px solid #1A262F;
    color: #FFFFFF;
    padding: 14px;
    border-radius: 4px;
    font-size: 1rem;
}

.terqiroRestSightFlow_Input:focus,
.terqiroRestSightFlow_Textarea:focus {
    outline: none;
    border-color: #42FFD5;
}

.terqiroRestSightFlow_Textarea {
    min-height: 120px;
    resize: vertical;
}

.terqiroRestSightFlow_FormCheck {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #A0AEC0;
}

.terqiroRestSightFlow_CheckLabel a {
    color: #42FFD5;
    text-decoration: underline;
}

.terqiroRestSightFlow_BtnSubmit {
    background-color: #42FFD5;
    color: #03070A;
    padding: 18px;
    border-radius: 4px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}

.terqiroRestSightFlow_BtnSubmit:hover {
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.4);
}

/* Info Text Sections */
.terqiroRestSightFlow_InfoTextSection {
    padding: 100px 0;
}

.terqiroRestSightFlow_BgAlt {
    background-color: #050B10;
}

.terqiroRestSightFlow_TextBlock {
    max-width: 900px;
    margin: 0 auto;
}

.terqiroRestSightFlow_TextBlock p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #E2E8F0;
}

.terqiroRestSightFlow_TextList {
    margin-top: 30px;
    list-style: none;
    padding-left: 0;
}

.terqiroRestSightFlow_TextList li {
    padding: 15px;
    background: rgba(66, 255, 213, 0.05);
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 2px solid #42FFD5;
}

.terqiroRestSightFlow_SimpleCard {
    background: #0E1A23;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.terqiroRestSightFlow_SimpleCard h4 {
    color: #42FFD5;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Footer Section */
.terqiroRestSightFlow_FooterOuter {
    background-color: #020507;
    padding: 80px 0 40px;
    border-top: 1px solid #1A262F;
}

.terqiroRestSightFlow_FooterContent {
    text-align: center;
}

.terqiroRestSightFlow_FooterBrand {
    font-size: 1.8rem;
    color: #42FFD5;
    font-weight: 700;
    margin-bottom: 20px;
}

.terqiroRestSightFlow_FooterRights,
.terqiroRestSightFlow_FooterEmail,
.terqiroRestSightFlow_FooterLoc,
.terqiroRestSightFlow_FooterTel {
    margin-bottom: 10px;
    color: #A0AEC0;
}

.terqiroRestSightFlow_FooterEmail a,
.terqiroRestSightFlow_FooterTel a {
    color: #42FFD5;
}

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

.terqiroRestSightFlow_FooterLinks a {
    font-size: 0.85rem;
    color: #718096;
}

.terqiroRestSightFlow_FooterLinks a:hover {
    color: #42FFD5;
}

/* Responsive */
@media (max-width: 992px) {
    .terqiroRestSightFlow_HeroWrapper {
        flex-direction: column;
    }
    .terqiroRestSightFlow_H1Title {
        font-size: 2.8rem;
    }
    .terqiroRestSightFlow_BenefitsWrapper {
        flex-direction: column;
    }
    .terqiroRestSightFlow_PriceGrid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .terqiroRestSightFlow_NavMenu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #03070A;
        border-bottom: 2px solid #42FFD5;
    }
    .terqiroRestSightFlow_NavList {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }
    .terqiroRestSightFlow_BurgerBtn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }
    .terqiroRestSightFlow_BurgerBtn span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #42FFD5;
    }
    .terqiroRestSightFlow_NavCheckbox:checked ~ .terqiroRestSightFlow_NavMenu {
        display: block;
    }
    .terqiroRestSightFlow_H1Title {
        font-size: 2.2rem;
    }
    .terqiroRestSightFlow_FormBox,
    .terqiroRestSightFlow_QuoteBox {
        padding: 30px;
    }
}