.pricingPage { padding-top: 5rem; } .hero { padding: 8rem 0; text-align: center; background-image: url('/images/inner-banner/pricing-banner.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); } .heroContent { position: relative; z-index: 1; } .heroTitle { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; color: #fff; } .breadcrumb { font-size: 1rem; color: rgba(255, 255, 255, 0.9); display: flex; align-items: center; justify-content: center; gap: 0.5rem; } .breadcrumb a { color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color 0.3s ease; } .breadcrumb a:hover { color: #fff; } .breadcrumb span { color: #fff; font-weight: 600; } /* FAQ Section */ .faqContainer { display: grid; grid-template-columns: 1fr; /* gap: 3rem; */ align-items: start; } @media (min-width: 1024px) { .faqContainer { grid-template-columns: 1fr 1fr; } } .faqDecorativeSection { display: flex; align-items: center; justify-content: center; /* padding: 2rem 0; */ } .imageFrameWrapper { position: relative; width: 100%; max-width: 450px; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; } /* Diagonal Background Lines */ .diagonalLines { position: absolute; inset: 0; overflow: hidden; z-index: 1; } .diagonalLinePink { position: absolute; width: 150%; height: 3px; background: linear-gradient(to right, rgba(236, 72, 153, 0.3), rgba(236, 72, 153, 0.6)); top: 30%; left: -25%; transform: rotate(-45deg); animation: floatLine 8s ease-in-out infinite; } .diagonalLineBlue { position: absolute; width: 150%; height: 3px; background: linear-gradient(to right, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.6)); bottom: 30%; right: -25%; transform: rotate(45deg); animation: floatLine 8s ease-in-out infinite reverse; } @keyframes floatLine { 0%, 100% { transform: rotate(-45deg) translateY(0); } 50% { transform: rotate(-45deg) translateY(-10px); } } /* Image Frame with Borders */ .imageFrame { position: relative; width: 85%; height: 85%; z-index: 2; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); } .frameImage { width: 100%; height: 100%; object-fit: cover; display: block; } /* Decorative Borders */ .frameBorderTopLeft { position: absolute; top: -15px; left: -15px; width: 120px; height: 120px; border-top: 4px solid #ec4899; border-left: 4px solid #ec4899; border-radius: 20px 0 0 0; z-index: 3; } .frameBorderBottomRight { position: absolute; bottom: -15px; right: -15px; width: 120px; height: 120px; border-bottom: 4px solid #2563eb; border-right: 4px solid #2563eb; border-radius: 0 0 20px 0; z-index: 3; } .faqContent { display: flex; flex-direction: column; } .faqHeader { margin-bottom: 2rem; } .faqTitle { font-size: 2.5rem; color: var(--foreground); font-weight: 800; } .faqList { display: flex; flex-direction: column; gap: 1rem; } .faqItem { background: var(--background); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.3s ease; border: 1px solid var(--border-color); } .faqItem:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); } .faqQuestion { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; font-size: 1.125rem; font-weight: 700; color: var(--foreground); font-family: var(--font-display); background: transparent; border: none; cursor: pointer; text-align: left; transition: all 0.3s ease; } .faqQuestion:hover { color: var(--primary); } .faqIcon { font-size: 1.5rem; font-weight: 300; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; } .faqIconOpen { transform: rotate(45deg); } .faqAnswer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; } .faqAnswerOpen { max-height: 500px; padding: 0 1.5rem 1.25rem 1.5rem; } .faqAnswer p { color: var(--foreground-secondary); line-height: 1.6; margin: 0; } /* Responsive adjustments */ @media (max-width: 1023px) { .imageFrameWrapper { max-width: 400px; margin: 0 auto 3rem; } .frameBorderTopLeft, .frameBorderBottomRight { width: 100px; height: 100px; } .frameBorderTopLeft { top: -12px; left: -12px; } .frameBorderBottomRight { bottom: -12px; right: -12px; } } @media (max-width: 768px) { .faqTitle { font-size: 2rem; } .faqQuestion { padding: 1rem 1.25rem; font-size: 1rem; } .faqAnswer p { font-size: 0.9375rem; } .faqAnswerOpen { padding: 0 1.25rem 1rem 1.25rem; } .faqIcon { font-size: 1.25rem; } /* Adjust decorative frame for mobile */ .imageFrameWrapper { max-width: 350px; aspect-ratio: 4/5; margin-bottom: 2rem; } .imageFrame { width: 90%; height: 90%; } .frameBorderTopLeft, .frameBorderBottomRight { width: 80px; height: 80px; border-width: 3px; } .frameBorderTopLeft { top: -10px; left: -10px; } .frameBorderBottomRight { bottom: -10px; right: -10px; } .diagonalLinePink, .diagonalLineBlue { height: 2px; } } @media (max-width: 480px) { .imageFrameWrapper { max-width: 280px; } .frameBorderTopLeft, .frameBorderBottomRight { width: 60px; height: 60px; } .frameBorderTopLeft { top: -8px; left: -8px; } .frameBorderBottomRight { bottom: -8px; right: -8px; } }