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

body.koranamelBodyMain {
    background-color: #07090C;
    color: #E0E0E0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER STYLE */
.koranamelHeaderWrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(7, 9, 12, 0.95);
    border-bottom: 1px solid #1A1F25;
}

.koranamelHeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.koranamelLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4FF7FF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.koranamelHeaderCyanRail {
    height: 3px;
    background: linear-gradient(90deg, transparent, #4FF7FF, transparent);
    width: 100%;
}

.koranamelNavList {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.koranamelNavLink {
    text-decoration: none;
    color: #E0E0E0;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.koranamelNavLink:hover {
    color: #4FF7FF;
}

/* MOBILE MENU */
.koranamelMenuCheckbox {
    display: none;
}

.koranamelBurgerBtn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.koranamelBurgerBtn span {
    width: 30px;
    height: 3px;
    background-color: #4FF7FF;
    transition: 0.3s;
}

/* HERO SECTION */
.koranamelHeroBlock {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.koranamelQuickLinks {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.koranamelQuickBtn {
    padding: 0.5rem 1.2rem;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.koranamelQuickBtn:hover {
    background-color: #4FF7FF;
    color: #07090C;
    box-shadow: 0 0 15px rgba(79, 247, 255, 0.5);
}

.koranamelHeroContent {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.koranamelHeroLeft, .koranamelHeroRight {
    flex: 1;
}

.koranamelHeroImg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(79, 247, 255, 0.1);
}

.koranamelHeroTitle {
    font-size: 3rem;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.koranamelHeroSubtitle {
    font-size: 1.25rem;
    color: #4FF7FF;
    margin-bottom: 2rem;
    font-weight: 300;
}

.koranamelHeroText {
    margin-bottom: 1.5rem;
    color: #B0B0B0;
    font-size: 1.1rem;
}

.koranamelCtaButton {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4FF7FF;
    color: #07090C;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.koranamelCtaButton:hover {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(79, 247, 255, 0.8);
    transform: translateY(-2px);
}

/* REVIEWS */
.koranamelReviewsBlock {
    padding: 5rem 2rem;
    background-color: #0C0F14;
}

.koranamelSectionHeading {
    text-align: center;
    margin-bottom: 4rem;
}

.koranamelH2Title {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.koranamelH2Subtitle {
    color: #808080;
    max-width: 700px;
    margin: 0 auto;
}

.koranamelReviewsGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.koranamelReviewCard {
    flex: 1 1 calc(50% - 2rem);
    background: #111418;
    padding: 2.5rem;
    border-left: 4px solid #4FF7FF;
    border-radius: 4px;
}

.koranamelReviewText {
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.koranamelReviewAuthor {
    color: #4FF7FF;
    font-weight: bold;
    font-size: 0.9rem;
}

/* PRODUCT / WHO IS FOR */
.koranamelWhoIsForBlock {
    padding: 5rem 2rem;
}

.koranamelProductGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.koranamelProductItem {
    flex: 1 1 calc(50% - 2.5rem);
    background: #0C0F14;
    border: 1px solid #1A1F25;
    padding: 2rem;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.koranamelProductItem:hover {
    border-color: #4FF7FF;
}

.koranamelProductImg {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.koranamelProductTitle {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.koranamelProductDesc {
    color: #B0B0B0;
    margin-bottom: 1.5rem;
}

.koranamelProductPrice {
    font-size: 1.2rem;
    color: #4FF7FF;
    font-weight: bold;
}

/* PRICING */
.koranamelPricingBlock {
    padding: 5rem 2rem;
    background-color: #07090C;
}

.koranamelPricingContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.koranamelPriceCard {
    flex: 1 1 calc(30% - 1.5rem);
    min-width: 280px;
    border: 2px solid #1A1F25;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s;
}

.koranamelPriceCard.koranamelFeatured {
    border-color: #4FF7FF;
    background: rgba(79, 247, 255, 0.02);
    transform: scale(1.05);
}

.koranamelPriceType {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.koranamelPriceValue {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4FF7FF;
    margin-bottom: 2rem;
}

.koranamelPriceValue span {
    font-size: 1rem;
    color: #808080;
}

.koranamelPriceFeatures {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.koranamelPriceFeatures li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #1A1F25;
    color: #B0B0B0;
    font-size: 0.9rem;
}

.koranamelPriceFeatures li::before {
    content: "→";
    color: #4FF7FF;
    margin-right: 10px;
}

.koranamelPriceBtn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #4FF7FF;
    color: #4FF7FF;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.koranamelPriceBtn:hover {
    background: #4FF7FF;
    color: #07090C;
}

/* EXPERT WORD */
.koranamelExpertSection {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(7,9,12,0.8), rgba(7,9,12,0.8)), url('https://placehold.co/1200x400/07090C/1A1F25?text=Ocean+View+Arica&width=1200&height=400');
    background-size: cover;
    background-position: center;
    text-align: center;
}

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

.koranamelBlockquote {
    font-size: 2.2rem;
    color: #FFFFFF;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.koranamelCiteName {
    color: #4FF7FF;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* BENEFITS SECTION */
.koranamelBenefitsBlock {
    padding: 5rem 2rem;
}

.koranamelBenefitsContent {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.koranamelBenefitsText, .koranamelBenefitsImage {
    flex: 1;
}

.koranamelImgResponsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.koranamelBenefitsList {
    list-style: none;
    margin-top: 2rem;
}

.koranamelBenefitsList li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.koranamelBenefitsList li::before {
    content: "◈";
    position: absolute;
    left: 0;
    color: #4FF7FF;
    font-size: 1.2rem;
}

/* FAQ */
.koranamelFaqBlock {
    padding: 5rem 2rem;
    background: #0C0F14;
}

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

.koranamelFaqItem {
    margin-bottom: 1rem;
    background: #111418;
    border-radius: 4px;
    overflow: hidden;
}

.koranamelFaqSummary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #FFFFFF;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.koranamelFaqSummary::after {
    content: "+";
    color: #4FF7FF;
}

.koranamelFaqItem[open] .koranamelFaqSummary::after {
    content: "-";
}

.koranamelFaqContent {
    padding: 0 1.5rem 1.5rem;
    color: #B0B0B0;
}

/* LONG TEXT SECTIONS */
.koranamelLongTextBlock {
    padding: 6rem 2rem;
}

.koranamelAltBg {
    background-color: #0C0F14;
}

.koranamelTextContainer {
    max-width: 1000px;
    margin: 0 auto;
}

.koranamelTextContainer h2 {
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.koranamelTextContainer h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #4FF7FF;
}

.koranamelTextContainer p {
    margin-bottom: 1.5rem;
    color: #B0B0B0;
    font-size: 1.1rem;
}

.koranamelTextContainer ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #B0B0B0;
}

/* FORM */
.koranamelFormSection {
    padding: 6rem 2rem;
}

.koranamelFormContainer {
    max-width: 600px;
    margin: 0 auto;
    background: #111418;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.koranamelFormSubtitle {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #808080;
}

.koranamelInputGroup {
    margin-bottom: 1.5rem;
}

.koranamelInputGroup label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.koranamelInputField, .koranamelTextareaField {
    width: 100%;
    padding: 1rem;
    background: #07090C;
    border: 1px solid #1A1F25;
    color: #FFFFFF;
    border-radius: 4px;
}

.koranamelInputField:focus, .koranamelTextareaField:focus {
    border-color: #4FF7FF;
    outline: none;
}

.koranamelCheckboxGroup {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.koranamelCheckboxGroup a {
    color: #4FF7FF;
    text-decoration: none;
}

.koranamelSubmitBtn {
    width: 100%;
    padding: 1rem;
    background: #4FF7FF;
    color: #07090C;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.koranamelSubmitBtn:hover {
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(79, 247, 255, 0.4);
}

/* FOOTER */
.koranamelFooterWrapper {
    background: #040507;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid #1A1F25;
}

.koranamelFooterTop {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.koranamelFooterBrand {
    font-size: 1.5rem;
    color: #4FF7FF;
    font-weight: 800;
}

.koranamelFooterContact p {
    color: #808080;
    margin-bottom: 0.5rem;
}

.koranamelFooterContact a {
    color: #E0E0E0;
    text-decoration: none;
}

.koranamelFooterLinks {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.koranamelFooterLinks a {
    color: #606060;
    text-decoration: none;
    font-size: 0.85rem;
}

.koranamelFooterLinks a:hover {
    color: #4FF7FF;
}

.koranamelFooterBottom {
    text-align: center;
    color: #404040;
    font-size: 0.8rem;
    border-top: 1px solid #111418;
    padding-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .koranamelHeroTitle { font-size: 2.5rem; }
    .koranamelHeroContent { flex-direction: column-reverse; }
    .koranamelPriceCard { flex: 1 1 calc(45% - 1.5rem); }
}

@media (max-width: 768px) {
    .koranamelBurgerBtn { display: flex; }
    .koranamelNavMenu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: #07090C;
        transition: 0.4s;
        padding: 2rem;
    }
    .koranamelNavList { flex-direction: column; text-align: center; gap: 2rem; }
    .koranamelMenuCheckbox:checked ~ .koranamelNavMenu { left: 0; }
    .koranamelHeroTitle { font-size: 2rem; }
    .koranamelProductItem, .koranamelReviewCard, .koranamelPriceCard { flex: 1 1 100%; }
    .koranamelBenefitsContent { flex-direction: column; }
    .koranamelBlockquote { font-size: 1.5rem; }
}