/* Gaviqar Pulse Cardio Aurora Stylesheet */

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

html {
    scroll-behavior: smooth;
}

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

.gpcaAuroraContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.gpcaAuroraHeaderWrap {
    position: sticky;
    top: 0;
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(207, 255, 53, 0.1);
}

.gpcaAuroraHeaderInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.gpcaAuroraPulseLine {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #CFFF35, transparent);
    background-size: 200% 100%;
    animation: gpcaAuroraPulseAnim 3s infinite linear;
}

@keyframes gpcaAuroraPulseAnim {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Navigation */
.gpcaAuroraNavList {
    list-style: none;
    display: flex;
    gap: 30px;
}

.gpcaAuroraNavLink {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.gpcaAuroraNavLink:hover {
    color: #CFFF35;
}

/* Burger Menu (No JS) */
.gpcaAuroraNavInput {
    display: none;
}

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

.gpcaAuroraBurgerBtn span {
    width: 30px;
    height: 3px;
    background-color: #CFFF35;
    transition: 0.3s;
}

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

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

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

.gpcaAuroraHeroMainImg {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(207, 255, 53, 0.2);
}

.gpcaAuroraHeroGallery {
    display: flex;
    gap: 15px;
}

.gpcaAuroraGalleryImg {
    flex: 1;
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gpcaAuroraHeroContent {
    flex: 1.2;
}

.gpcaAuroraMainTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.gpcaAuroraSubTitle {
    font-size: 20px;
    color: #CFFF35;
    margin-bottom: 30px;
    font-weight: 600;
}

.gpcaAuroraTextPara {
    margin-bottom: 20px;
    color: #CCCCCC;
    font-size: 17px;
}

/* Buttons */
.gpcaAuroraBtnPrimary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #CFFF35;
    color: #0A0C10;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    transition: 0.4s;
    border: none;
    cursor: pointer;
}

.gpcaAuroraBtnPrimary:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.6);
    transform: translateY(-2px);
}

.gpcaAuroraBtnSecondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #CFFF35;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid #CFFF35;
    cursor: pointer;
}

.gpcaAuroraBtnSecondary:hover {
    background-color: #CFFF35;
    color: #0A0C10;
}

/* Titles */
.gpcaAuroraSecTitle {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.gpcaAuroraSecTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #CFFF35;
}

/* Reviews */
.gpcaAuroraReviewSection {
    padding: 80px 0;
    background-color: #0F1218;
}

.gpcaAuroraReviewSlider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: #CFFF35 #0A0C10;
}

.gpcaAuroraReviewItem {
    min-width: 350px;
    flex: 1;
    background-color: #0A0C10;
    padding: 40px;
    border-left: 4px solid #CFFF35;
}

.gpcaAuroraQuote {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 25px;
    color: #EEEEEE;
}

.gpcaAuroraCiteName {
    display: block;
    color: #CFFF35;
    font-weight: 700;
}

/* Price Section */
.gpcaAuroraPriceSection {
    padding: 100px 0;
}

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

.gpcaAuroraPriceCard {
    flex: 1;
    background-color: #161A21;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.gpcaAuroraPriceCardFeatured {
    border: 1px solid #CFFF35;
    transform: scale(1.05);
    background-color: #1A1F27;
}

.gpcaAuroraIconCircle {
    width: 100px;
    height: 100px;
    border: 2px solid #CFFF35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.gpcaAuroraCardIcon {
    border-radius: 50%;
}

.gpcaAuroraCardTitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.gpcaAuroraCardPrice {
    font-size: 32px;
    color: #CFFF35;
    font-weight: 800;
    margin-bottom: 25px;
}

.gpcaAuroraCardList {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.gpcaAuroraCardList li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #CCCCCC;
    font-size: 15px;
}

/* Benefits */
.gpcaAuroraBenefitSection {
    padding: 100px 0;
    background-color: #0F1218;
}

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

.gpcaAuroraBenefitContent {
    flex: 1;
}

.gpcaAuroraBenefitMedia {
    flex: 1;
}

.gpcaAuroraBenefitImg {
    width: 100%;
    border-radius: 4px;
    box-shadow: -20px 20px 0 #CFFF35;
}

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

.gpcaAuroraBenefitListItem {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.gpcaAuroraBenefitListItem::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #CFFF35;
    font-weight: 900;
    font-size: 20px;
}

/* Target Section */
.gpcaAuroraTargetSection {
    padding: 100px 0;
}

.gpcaAuroraSecIntro {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    font-size: 18px;
    color: #AAAAAA;
}

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

.gpcaAuroraTargetCard {
    background-color: #161A21;
    border-bottom: 3px solid #CFFF35;
    overflow: hidden;
}

.gpcaAuroraTargetImg {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.5s;
}

.gpcaAuroraTargetCard:hover .gpcaAuroraTargetImg {
    filter: grayscale(0);
}

.gpcaAuroraTargetTitle {
    padding: 25px 25px 10px;
    font-size: 22px;
}

.gpcaAuroraTargetDesc {
    padding: 0 25px 25px;
    color: #AAAAAA;
}

.gpcaAuroraTargetPriceTag {
    display: block;
    padding: 0 25px 25px;
    color: #CFFF35;
    font-weight: 700;
}

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

.gpcaAuroraBgAlternate {
    background-color: #0F1218;
}

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

.gpcaAuroraSubSecTitle {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #CFFF35;
}

.gpcaAuroraGeneralList {
    margin: 20px 0 30px 20px;
}

.gpcaAuroraGeneralList li {
    margin-bottom: 12px;
    color: #CCCCCC;
}

/* FAQ */
.gpcaAuroraFaqSection {
    padding: 100px 0;
    background-color: #0A0C10;
}

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

.gpcaAuroraFaqItem {
    margin-bottom: 15px;
    background-color: #161A21;
    border: 1px solid rgba(207, 255, 53, 0.1);
}

.gpcaAuroraFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gpcaAuroraFaqSummary::after {
    content: '+';
    color: #CFFF35;
    font-size: 24px;
}

.gpcaAuroraFaqItem[open] .gpcaAuroraFaqSummary::after {
    content: '-';
}

.gpcaAuroraFaqContent {
    padding: 0 20px 20px;
    color: #AAAAAA;
}

/* Form */
.gpcaAuroraFormSection {
    padding: 100px 0;
    background: linear-gradient(180deg, #0A0C10, #0F1218);
}

.gpcaAuroraFormInner {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1A1F27;
    padding: 60px;
    border-radius: 4px;
    border: 1px solid rgba(207, 255, 53, 0.2);
}

.gpcaAuroraFormSub {
    text-align: center;
    margin-bottom: 40px;
    color: #CCCCCC;
}

.gpcaAuroraInputGroup {
    margin-bottom: 25px;
}

.gpcaAuroraLabel {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #CFFF35;
}

.gpcaAuroraInputField, .gpcaAuroraTextField {
    width: 100%;
    padding: 15px;
    background-color: #0A0C10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    outline: none;
    transition: 0.3s;
}

.gpcaAuroraInputField:focus, .gpcaAuroraTextField:focus {
    border-color: #CFFF35;
}

.gpcaAuroraTextField {
    height: 120px;
    resize: vertical;
}

.gpcaAuroraCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.gpcaAuroraCheckLabel {
    font-size: 14px;
    color: #AAAAAA;
}

.gpcaAuroraCheckLabel a {
    color: #CFFF35;
}

.gpcaAuroraSubmitBtn {
    width: 100%;
    padding: 18px;
    background-color: #CFFF35;
    color: #0A0C10;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.gpcaAuroraSubmitBtn:hover {
    box-shadow: 0 0 30px rgba(207, 255, 53, 0.4);
}

/* Footer */
.gpcaAuroraFooterWrap {
    background-color: #07090D;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(207, 255, 53, 0.1);
}

.gpcaAuroraFooterTop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.gpcaAuroraFooterLogo {
    font-size: 24px;
    font-weight: 800;
    color: #CFFF35;
}

.gpcaAuroraFooterContact p {
    margin-bottom: 10px;
    color: #CCCCCC;
}

.gpcaAuroraFooterContact a {
    color: #FFFFFF;
    text-decoration: none;
}

.gpcaAuroraFooterDivider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 40px 0;
}

.gpcaAuroraFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gpcaAuroraCopyright {
    color: #666666;
    font-size: 14px;
}

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

.gpcaAuroraFooterLinks a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.gpcaAuroraFooterLinks a:hover {
    color: #CFFF35;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .gpcaAuroraHeroFlex, .gpcaAuroraBenefitFlex {
        flex-direction: column;
    }
    
    .gpcaAuroraPriceGrid {
        flex-direction: column;
        align-items: center;
    }
    
    .gpcaAuroraPriceCard {
        width: 100%;
        max-width: 450px;
    }
    
    .gpcaAuroraPriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .gpcaAuroraMainTitle {
        font-size: 36px;
    }
    
    .gpcaAuroraHeaderInner {
        position: relative;
    }
    
    .gpcaAuroraBurgerBtn {
        display: flex;
    }
    
    .gpcaAuroraNavMenu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #0A0C10;
        height: 0;
        overflow: hidden;
        transition: 0.5s;
    }
    
    .gpcaAuroraNavList {
        flex-direction: column;
        padding: 40px;
        align-items: center;
    }
    
    .gpcaAuroraNavInput:checked ~ .gpcaAuroraNavMenu {
        height: calc(100vh - 80px);
    }
    
    .gpcaAuroraNavInput:checked ~ .gpcaAuroraBurgerBtn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .gpcaAuroraNavInput:checked ~ .gpcaAuroraBurgerBtn span:nth-child(2) {
        opacity: 0;
    }
    
    .gpcaAuroraNavInput:checked ~ .gpcaAuroraBurgerBtn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    
    .gpcaAuroraFooterBottom {
        flex-direction: column;
        text-align: center;
    }
}