/* ========================================
   GLOBAL STYLES
   ======================================== */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Content Container */
.page-content {
    min-height: 100vh;
    transition: opacity 0.5s ease;
}

header, section {
    margin: 0;
    padding: 0;
    display: block;
}

/* ========================================
   HEADER STYLES
   ======================================== */

/* Top Header Bar */
.top-header {
    background: #2D2D2D;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    margin-bottom: 0 !important;
    line-height: normal;
    position: relative;
    z-index: 3;
    border-bottom: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.says-logo {
    width: 89px;
    height: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: white;
    letter-spacing: 2px;
}

.exclusive-text {
    color: #ffffff;
    border-radius: 4px;
    font-family: 'Proxima Nova', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.share-btn {
    width: 135px;
    height: 29px;
    background: transparent;
    border: 1px solid white;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: white;
    color: #2D2D2D;
}

.share-icon {
    width: 16px;
    height: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background-color: #FFFFFF;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Show desktop, hide mobile by default */
.hero-desktop {
    display: block;
}

.hero-mobile {
    display: none;
}

/* ========================================
   QUIZ INTRO SECTION
   ======================================== */

.quiz-intro-section {
    background-color: #0277D0;
    padding: 60px 40px 80px;
    text-align: center;
    position: relative;
}

.ps-box {
    background-color: #FFFFFF;
    color: #EB8627;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 30px;
    max-width: 90%;
    box-shadow: 12px 11px 15px #004988;
}

.ps-box a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.main-heading {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.sub-heading {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
}

.psstt-container {
    position: relative;
    display: inline-block;
    /* margin: 20px 0; */
}

.psstt-text {
    font-family: 'Yeseva One', serif;
    font-weight: 400;
    font-size: 92px;
    color: #FCB169;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

/* ========================================
   GIFT BOX STYLES - SEPARATED ELEMENTS
   ======================================== */

/* Right Gift Box Container */
.gift-box-right {
    position: absolute;
    right: -120px;
    top: -20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gift-box-right:hover {
    transform: scale(1.05);
}

/* Gift Box Image */
.gift-box-image {
    width: 95px;
    height: 90px;
    transform: rotate(14.37deg);
    display: block;
}

/* Arrow Wrapper - Contains both arrow and text */
.arrow-wrapper {
    position: absolute;
    top: 90PX;
    gap: 5px;
    display: flex;
    justify-content: center;
    right: 30px;
    transform: rotate(14.43deg);
    align-items: start;
}

/* Arrow Image */
.arrow-right {
    width: 13px;
    height: 13px;
    display: block;
    margin-bottom: 5px;
}

/* Click Me Text */
.click-me-right {
    font-family: 'Patrick Hand', cursive;
    font-weight: 400;
    font-size: 11.54px;
    color: #FFFFFF;
    white-space: nowrap;
    text-align: center;
}

/* Left Gift Box */
.gift-box-left {
    position: absolute;
    left: -110px;
    bottom: -10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gift-box-left:hover {
    transform: scale(1.05);
}

.gift-box-left .gift-box-image {
    width: 94px;
    height: 88px;
    transform: rotate(-17.65deg);
}

/* ========================================
   DESCRIPTION AND CTA
   ======================================== */

.description-text {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 30px auto;
    max-width: 700px;
    line-height: 1.8;
}

.description-text-upper {
    margin-bottom: 50px;
}

.cta-button-container {
    position: relative;
    display: inline-block;
    margin-top: 40px;
}

.cta-button {
    background: radial-gradient(50% 50% at 50% 50%, #FCB169 0%, #EB8627 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 16px;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #E67A1F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 40, 0.4);
}

/* .cta-button::after {
    content: '→';
    font-size: 20px;
} */

/* ========================================
   SHARE MODAL STYLING (FROM SANOFI)
   ======================================== */

.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: flex-end;
}

.share-modal.active {
    display: flex;
}

.share-modal-content {
    background-color: white;
    border-radius: 20px 20px 0 0;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.share-options {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.share-option {
    background-color: white;
    border: none;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.share-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.share-option i {
    font-size: 32px;
    color: #5C4F9D;
}

.share-option span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

/* ========================================
   SHARE MODAL ICON STYLING
   ======================================== */

/* Facebook Icon */
.share-option:nth-child(1) i {
    color: #039be5;
    font-size: 32px;
}

/* X (Twitter) Icon */
.share-option:nth-child(2) i {
    color: #fff;
    background: #000;
    border-radius: 50%;
    padding: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* WhatsApp Icon */
.share-option:nth-child(3) i {
    color: #fff;
    background: #40c351;
    border-radius: 50%;
    padding: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Copy Link Icon */
.share-option:nth-child(4) i {
    color: #fff;
    background: #0056B3;
    border-radius: 50%;
    padding: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ========================================
   PLACEHOLDER STYLES
   ======================================== */

.quiz-placeholder,
.results-placeholder {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quiz-placeholder h2,
.results-placeholder h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.quiz-placeholder p,
.results-placeholder p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* 1400px Breakpoint */
@media screen and (max-width: 1400px) {
    .psstt-text {
        font-size: 80px;
    }
    
    .gift-box-right {
        right: -170px;
    }
    
    .gift-box-left {
        top: 5px;
        left: -180px;
    }
}

/* 1200px Breakpoint */
@media screen and (max-width: 1200px) {
    .top-header {
        padding: 12px 30px;
    }
    
    .psstt-text {
        font-size: 70px;
    }
    
    .gift-box-right {
        right: -90px;
    }
    
    .gift-box-image {
        width: 85px;
        height: 80px;
    }
    
    .gift-box-left {
        left: -85px;
    }
    
    .gift-box-left .gift-box-image {
        width: 84px;
        height: 78px;
    }
    
    .description-text {
        font-size: 15px;
        max-width: 650px;
    }
}

/* 768px Breakpoint - Mobile */
@media screen and (max-width: 768px) {
    .top-header {
        padding: 10px 20px;
    }
    
    .says-logo {
        width: 70px;
    }
    
    .exclusive-text {
        font-size: 11px;
    }
    
    .share-btn {
        width: 120px;
        height: 26px;
        font-size: 12px;
    }
    
    /* Swap hero images on mobile */
    .hero-section {
        background-color: transparent;
        padding: 0;
    }
    
    .hero-desktop {
        display: none;
    }
    
    .hero-mobile {
        display: block;
    }
    
    .quiz-intro-section {
        margin-top: -7px;
        padding: 40px 20px 60px;
    }
    
    .ps-box {
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .main-heading {
        font-size: 24px;
        padding: 0 30px;
    }
    
    .sub-heading {
        /* font-size: 14px; */
    }
    
    .psstt-text {
        font-size: 92px;
        position: relative;
        z-index: 0;
    }
    
    .gift-box-right {
        right: -30px;
        top: -10px;
        z-index: 1;
    }
    
    .gift-box-image {
        width: 80px;
        height: 80px;
    }
    
    .click-me-right {
        font-size: 10px;
    }
    
    .arrow-right {
        width: 12px;
        height: 12px;
        transform: rotate(-163deg);
        position: relative;
        top: 9px;
    }
    
    .arrow-wrapper {
        display: flex;
        right: 13px;
        top: 5px;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }

    
    .gift-box-left {
        left: -80px;
        top: -53px;
    }
    
    .gift-box-left .gift-box-image {
        width: 80px;
        height: 80px;
    }
    
    .description-text {
        font-size: 16px;
        max-width: 100%;
        margin: 20px auto;
        text-align: start;
        padding: 0 35px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 28px;
        border-radius: 12px;
    }
    
    /* Share Modal Mobile */
    .share-modal-content {
        padding: 20px;
    }
    
    .share-options {
        gap: 10px;
    }
    
    .share-option {
        padding: 15px 10px;
    }
    
    .share-option i {
        font-size: 24px;
    }
    
    .share-option span {
        font-size: 11px;
    }
    
    /* Adjust icon sizes for mobile */
    .share-option:nth-child(2) i,
    .share-option:nth-child(3) i,
    .share-option:nth-child(4) i {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .share-option:nth-child(3) i {
        font-size: 20px;
    }
}

/* 400px Breakpoint */
@media screen and (max-width: 400px) {
    .says-logo {
        width: 60px;
    }
    
    .exclusive-text {
        display: none;
    }
    
    .share-btn {
        width: 120px;
        font-size: 14px;
    }
    
    .quiz-intro-section {
        padding: 30px 15px 50px;
    }
    
    .ps-box {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .main-heading {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .sub-heading {
        font-size: 14px;
    }
    
    .psstt-text {
        font-size: 92px;
    }
    
    .gift-box-right {
        right: -25px;
    }
    
    .gift-box-image {
        /* width: 60px; */
        /* height: 56px; */
    }
    
    .click-me-right {
        font-size: 9px;
    }
    
    .gift-box-left {
        left: -65px;
        top: -40px;
    }
    
    .gift-box-left .gift-box-image {
        width: 70px;
        height: auto;
    }
    
    .description-text {
        font-size: 16px;
        text-align: start;
        padding: 0 25px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 28px;
        border-radius: 12px;
    }
}

/* 360px Breakpoint */
@media screen and (max-width: 360px) {
    .logo-section {
        gap: 10px;
    }
    
    .says-logo {
        width: 55px;
    }

    .ps-box {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .psstt-text {
        font-size: 92px;
    }
    
    .gift-box-right {
        right: -10px;
        top: 0;
    }
    
    .gift-box-image {
        width: 70px;
        height: auto;
    }
    
    .gift-box-left {
        left: -55px;
    }
    
    .gift-box-left .gift-box-image {
        width: 55px;
        height: 51px;
    }
    
    .description-text {
        font-size: 16px;
        padding: 0px 15px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.hidden {
    display: none !important;
}