:root {
    --primary-orange: #F97316;
    --dark-orange: #EA580C;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --section-gray: #F1F5F9;
}

/* Section Styles */
.hero-section {
    background: var(--primary-orange);
    color: var(--white);
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Badge Wrapper */
.badge-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--white);
    color: var(--primary-orange);
}

.badge-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Typography */
.heading {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.sub-heading {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.description {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 48rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.75rem;
    padding: 0 2rem;
    border-radius: 0.375rem;
    background: var(--white);
    color: var(--primary-orange);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-primary:hover {
    background: var(--light-gray);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Responsive Design */
/* Tablet */
@media (min-width: 768px) {
    .hero-section {
        padding: 5rem 0;
    }
    
    .heading {
        font-size: 2.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 0;
    }
    
    .heading {
        font-size: 3rem;
    }
    
    .sub-heading {
        font-size: 1.25rem;
    }
    
    .description {
        font-size: 1.125rem;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .heading {
        font-size: 3.75rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .badge-wrapper {
        gap: 0.35rem;
    }
    
    .badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
    }
    
    .heading {
        font-size: 1.5rem;
    }
    
    .sub-heading {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.875rem;
    }
    
    .btn-primary {
        width: 100%;
        height: 2.5rem;
        font-size: 0.8125rem;
        padding: 0 1.5rem;
    }
}


/* CTA Section */
.lp-cta-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--lp-primary-orange), var(--lp-dark-orange));
    position: relative;
    overflow: hidden;
}

/* Animated Background Circles */
.lp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    animation: lpCtaFloat 20s ease-in-out infinite;
}

.lp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
    animation: lpCtaFloat 15s ease-in-out infinite reverse;
}

@keyframes lpCtaFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.lp-cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lp-cta-wrapper {
    text-align: center;
}

/* Badge */
.lp-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-white);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    animation: lpCtaPulse 2s ease-in-out infinite;
}

@keyframes lpCtaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Title */
.lp-cta-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lp-white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.lp-cta-highlight {
    position: relative;
    display: inline-block;
}

.lp-cta-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.30);
    border-radius: 9999px;
}

/* Description */
.lp-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-price {
    font-weight: 700;
    font-size: 1.125rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.1rem 0.6rem;
    border-radius: 0.375rem;
}

.lp-cta-bold {
    font-weight: 700;
}

/* Buttons */
.lp-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.lp-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    background: var(--lp-white);
    color: var(--lp-primary-orange);
    border: none;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.lp-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.20);
    background: var(--lp-light-gray);
}

.lp-cta-btn-primary:active {
    transform: scale(0.97);
}

.lp-cta-btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.lp-cta-btn-primary:hover svg {
    transform: translateX(4px);
}

.lp-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--lp-white);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.lp-cta-btn-secondary svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Features */
.lp-cta-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
}

.lp-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.lp-cta-feature-icon {
    font-size: 0.875rem;
}

/* Responsive */

/* Tablet */
@media (min-width: 640px) {
    .lp-cta-section {
        padding: 5rem 1.5rem;
    }
    
    .lp-cta-title {
        font-size: 2.25rem;
    }
    
    .lp-cta-desc {
        font-size: 1.0625rem;
    }
    
    .lp-cta-btn-primary,
    .lp-cta-btn-secondary {
        padding: 1rem 3rem;
        font-size: 1rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .lp-cta-section {
        padding: 6rem 2rem;
    }
    
    .lp-cta-title {
        font-size: 3rem;
    }
    
    .lp-cta-desc {
        font-size: 1.125rem;
        max-width: 650px;
    }
    
    .lp-cta-buttons {
        gap: 1rem;
    }
    
    .lp-cta-btn-primary,
    .lp-cta-btn-secondary {
        padding: 1.125rem 3.5rem;
        font-size: 1.0625rem;
        border-radius: 1rem;
    }
    
    .lp-cta-features {
        gap: 1rem 2rem;
    }
    
    .lp-cta-feature {
        font-size: 0.875rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lp-cta-section {
        padding: 2.5rem 1rem;
    }
    
    .lp-cta-title {
        font-size: 1.5rem;
    }
    
    .lp-cta-desc {
        font-size: 0.875rem;
    }
    
    .lp-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }
    
    .lp-cta-btn-primary,
    .lp-cta-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 0.625rem;
    }
    
    .lp-cta-features {
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .lp-cta-feature {
        font-size: 0.75rem;
    }
    
    .lp-cta-badge {
        font-size: 0.6rem;
        padding: 0.3rem 1rem;
    }
}

/* Hover shine effect on primary button */
.lp-cta-btn-primary {
    position: relative;
    overflow: hidden;
}

.lp-cta-btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.lp-cta-btn-primary:hover::before {
    transform: translateX(100%) rotate(45deg);
}

/* Animation for entry */
@keyframes lpCtaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-cta-wrapper > * {
    animation: lpCtaFadeInUp 0.8s ease forwards;
    opacity: 0;
}

.lp-cta-wrapper > *:nth-child(1) { animation-delay: 0.1s; }
.lp-cta-wrapper > *:nth-child(2) { animation-delay: 0.2s; }
.lp-cta-wrapper > *:nth-child(3) { animation-delay: 0.3s; }
.lp-cta-wrapper > *:nth-child(4) { animation-delay: 0.4s; }
.lp-cta-wrapper > *:nth-child(5) { animation-delay: 0.5s; }
/* Section */
.lp-explore-section {
    padding: 3rem 1rem;
    background: var(--lp-section-gray);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.lp-explore-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.lp-explore-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.03), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.lp-explore-container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.lp-explore-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lp-explore-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.08);
    color: var(--lp-primary-orange);
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.lp-explore-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0.5rem;
}

.lp-explore-highlight {
    color: var(--lp-primary-orange);
    position: relative;
}

.lp-explore-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lp-primary-orange);
    border-radius: 9999px;
    opacity: 0.3;
}

.lp-explore-desc {
    font-size: 0.9375rem;
    color: #64748B;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid */
.lp-explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Card */
.lp-explore-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--lp-white);
    padding: 1.25rem;
    border-radius: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Card shine effect */
.lp-explore-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(249, 115, 22, 0.03) 50%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.lp-explore-card:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.lp-explore-card:hover {
    border-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 8px 35px rgba(249, 115, 22, 0.08);
    transform: translateY(-4px);
}

.lp-explore-card:active {
    transform: scale(0.97);
}

/* Card Icon */
.lp-explore-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    min-width: 3.5rem;
    background: rgba(249, 115, 22, 0.06);
    border-radius: 0.75rem;
    font-size: 1.75rem;
    transition: all 0.4s ease;
}

.lp-explore-card:hover .lp-explore-card-icon {
    background: var(--lp-primary-orange);
    transform: scale(1.05) rotate(-5deg);
}

/* Card Content */
.lp-explore-card-content {
    flex: 1;
}

.lp-explore-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0F172A;
    transition: color 0.3s ease;
    margin-bottom: 0.15rem;
}

.lp-explore-card:hover .lp-explore-card-title {
    color: var(--lp-primary-orange);
}

.lp-explore-card-desc {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.4rem;
}

.lp-explore-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lp-explore-card-duration,
.lp-explore-card-fee {
    font-size: 0.7rem;
    font-weight: 500;
    color: #94A3B8;
    background: var(--lp-light-gray);
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.lp-explore-card:hover .lp-explore-card-duration,
.lp-explore-card:hover .lp-explore-card-fee {
    background: rgba(249, 115, 22, 0.06);
    color: var(--lp-primary-orange);
}

/* Arrow */
.lp-explore-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    background: rgba(249, 115, 22, 0.04);
    border-radius: 50%;
    color: var(--lp-primary-orange);
    transition: all 0.4s ease;
}

.lp-explore-card-arrow svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.4s ease;
}

.lp-explore-card:hover .lp-explore-card-arrow {
    background: var(--lp-primary-orange);
    color: var(--lp-white);
}

.lp-explore-card:hover .lp-explore-card-arrow svg {
    transform: translateX(4px);
}

/* Footer */
.lp-explore-footer {
    text-align: center;
    margin-top: 2rem;
}

.lp-explore-footer-text {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-primary-orange);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(249, 115, 22, 0.04);
}

.lp-explore-footer-text:hover {
    background: rgba(249, 115, 22, 0.08);
    transform: translateX(4px);
}

.lp-explore-footer-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.lp-explore-footer-text:hover .lp-explore-footer-arrow {
    transform: translateX(4px);
}

/* Responsive */

/* Tablet */
@media (min-width: 640px) {
    .lp-explore-section {
        padding: 4rem 1.5rem;
    }
    
    .lp-explore-title {
        font-size: 2rem;
    }
    
    .lp-explore-desc {
        font-size: 1rem;
    }
    
    .lp-explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .lp-explore-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 0.75rem;
    }
    
    .lp-explore-card-icon {
        width: 4rem;
        height: 4rem;
        min-width: 4rem;
        font-size: 2rem;
        border-radius: 1rem;
    }
    
    .lp-explore-card-title {
        font-size: 1.25rem;
    }
    
    .lp-explore-card-desc {
        font-size: 0.875rem;
    }
    
    .lp-explore-card-arrow {
        align-self: flex-end;
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .lp-explore-section {
        padding: 5rem 2rem;
    }
    
    .lp-explore-title {
        font-size: 2.25rem;
    }
    
    .lp-explore-desc {
        font-size: 1.0625rem;
    }
    
    .lp-explore-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .lp-explore-card {
        padding: 1.75rem;
        gap: 1rem;
        border-radius: 1.25rem;
    }
    
    .lp-explore-card-icon {
        width: 4.5rem;
        height: 4.5rem;
        min-width: 4.5rem;
        font-size: 2.25rem;
    }
    
    .lp-explore-card-title {
        font-size: 1.375rem;
    }
    
    .lp-explore-card-desc {
        font-size: 0.9375rem;
    }
    
    .lp-explore-card-meta {
        gap: 0.5rem;
    }
    
    .lp-explore-card-duration,
    .lp-explore-card-fee {
        font-size: 0.75rem;
        padding: 0.2rem 0.7rem;
    }
    
    .lp-explore-card-arrow {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
    }
    
    .lp-explore-card-arrow svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .lp-explore-section {
        padding: 2rem 0.75rem;
    }
    
    .lp-explore-title {
        font-size: 1.5rem;
    }
    
    .lp-explore-desc {
        font-size: 0.8125rem;
    }
    
    .lp-explore-grid {
        gap: 0.75rem;
    }
    
    .lp-explore-card {
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 0.75rem;
    }
    
    .lp-explore-card-icon {
        width: 2.75rem;
        height: 2.75rem;
        min-width: 2.75rem;
        font-size: 1.5rem;
        border-radius: 0.625rem;
    }
    
    .lp-explore-card-title {
        font-size: 1rem;
    }
    
    .lp-explore-card-desc {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .lp-explore-card-meta {
        gap: 0.4rem;
    }
    
    .lp-explore-card-duration,
    .lp-explore-card-fee {
        font-size: 0.6rem;
        padding: 0.1rem 0.5rem;
    }
    
    .lp-explore-card-arrow {
        width: 2rem;
        height: 2rem;
        min-width: 2rem;
    }
    
    .lp-explore-card-arrow svg {
        width: 1rem;
        height: 1rem;
    }
    
    .lp-explore-footer-text {
        font-size: 0.8125rem;
        padding: 0.4rem 0.75rem;
    }
}

/* Animation */
@keyframes lpExploreFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-explore-card {
    animation: lpExploreFadeUp 0.6s ease forwards;
    opacity: 0;
}

.lp-explore-card:nth-child(1) { animation-delay: 0.1s; }
.lp-explore-card:nth-child(2) { animation-delay: 0.2s; }
.lp-explore-card:nth-child(3) { animation-delay: 0.3s; }
.lp-explore-footer-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-orange);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lp-explore-footer-link:hover{
    color: var(--dark-orange);
}

.lp-explore-footer-arrow{
    transition: transform 0.3s ease;
}

.lp-explore-footer-link:hover .lp-explore-footer-arrow{
    transform: translateX(6px);
}