@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Sora:wght@300;400;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #fafafa;
    color: #2d2d2d;
    overflow-x: hidden;
    line-height: 1.8;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-family: "Sora", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d2d2d;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6b9d;
}

.nav-cta {
    background: #ff6b9d;
    color: #2d2d2d;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-cta:hover {
    background: #e85a8a;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fafafa;
    position: relative;
    padding: 7rem 2rem 4rem;
}

/* Hero with Couple Background */
.hero.romantic {
    background: #fafafa;
}

/* Hero Split Layout - Left Text, Right Image */
.hero-split {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-text .hero-badge {
    display: inline-block;
}

.hero-text h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text .hero-subtitle {
    text-align: left;
    margin-left: 0;
}

.hero-text .hero-buttons {
    justify-content: flex-start;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Mobile Responsive for Hero Split */
@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-text .hero-subtitle {
        text-align: center;
    }

    .hero-text .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        max-width: 300px;
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 157, 0.1);
    color: #2d2d2d;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
    letter-spacing: 0.05em;
}

.hero h1 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero h1 .highlight {
    color: #ff6b9d;
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(45, 45, 45, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary {
    background: #ff6b9d;
    color: #2d2d2d;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: #2d2d2d;
    padding: 1rem 2.2rem;
    border: 1px solid rgba(45, 45, 45, 0.3);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #e85a8a;
    transform: translateY(-1px);
}

.btn-secondary:hover {
    background: #2d2d2d;
    color: #ffffff;
    border-color: #2d2d2d;
}

.hero-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.dashboard-mockup {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b9d;
}

.mockup-dot:nth-child(2) {
    background: rgba(0, 0, 0, 0.15);
}

.mockup-dot:nth-child(3) {
    background: rgba(0, 0, 0, 0.1);
}

.stress-gauge {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    position: relative;
    background: conic-gradient(from 0deg,
            #ff6b9d 0%,
            #e85a8a 35%,
            rgba(0, 0, 0, 0.1) 35%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gauge-inner {
    width: 130px;
    height: 130px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gauge-value {
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2d2d2d;
}

.gauge-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: #fafafa;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-family: "Sora", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f5f5f5;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-header h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.features-header p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    padding-top: 120px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center top;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.7) 40%,
            rgba(255, 255, 255, 0.95) 60%,
            rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.15);
}

/* Feature Card Backgrounds */
.feature-remaja {
    background-image: url('../images/feature_remaja.png');
}

.feature-valid {
    background-image: url('../images/feature_valid.png');
}

.feature-web {
    background-image: url('../images/feature_web.png');
}

.feature-realtime {
    background-image: url('../images/feature_realtime.png');
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.feature-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.feature-card p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffb6c1 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='60' height='60'%3E%3Cpath d='M50 30 Q55 20 65 25 Q80 35 50 55 Q20 35 35 25 Q45 20 50 30' fill='%23ffffff' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-hearts span {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: floatCTA 8s ease-in-out infinite;
}

.cta-hearts span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.cta-hearts span:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 1s;
}

.cta-hearts span:nth-child(3) {
    right: 25%;
    top: 30%;
    animation-delay: 2s;
}

.cta-hearts span:nth-child(4) {
    right: 10%;
    top: 70%;
    animation-delay: 0.5s;
}

.cta-hearts span:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-delay: 1.5s;
}

@keyframes floatCTA {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.cta-illustration {
    margin-bottom: 2rem;
}

.cta-illustration img {
    max-width: 150px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: floatImage 4s ease-in-out infinite;
}

.cta-section h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.cta-button-large {
    background: #ffffff;
    color: #ff6b9d;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-large:hover {
    background: #e85a8a;
    transform: translateY(-1px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 6rem 0;
    background: #fafafa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.about-header p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #e85a8a, #ff8fab);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.about-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 143, 171, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.about-card p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    font-size: 0.92rem;
    font-weight: 300;
}

.about-team {
    list-style: none;
    padding: 0;
    margin-top: 0.8rem;
}

.about-team li {
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: #2d2d2d;
    font-weight: 500;
}

/* ============================================
   PRIVACY SECTION
   ============================================ */
.privacy-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f5f5, #f0f0f0);
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.privacy-header p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.privacy-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A, #81c784);
}

.privacy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.privacy-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(129, 199, 132, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 0.85rem;
}

.privacy-note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #f0f7ff, #f5f9ff);
    border-radius: 10px;
    border: 1px solid rgba(33, 150, 243, 0.1);
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 6rem 0;
    background: #fafafa;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #2d2d2d;
}

.contact-header p {
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #6b9dff);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #2d2d2d;
}

.contact-role {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(255, 143, 171, 0.12));
    border: 1px solid rgba(255, 107, 157, 0.15);
    border-radius: 10px;
    color: #e85a8a;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    background: linear-gradient(135deg, #ff6b9d, #e85a8a);
    color: #fff;
    border-color: #ff6b9d;
    transform: translateY(-1px);
}

.contact-detail {
    font-size: 0.88rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive for new sections */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-container,
    .privacy-container,
    .contact-container {
        padding: 0 1.5rem;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: #ffffff;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6b9d;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-section a:hover {
    color: #ff6b9d;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .features-container {
        padding: 0 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .cta-container {
        padding: 0 1.5rem;
    }

    .footer-content {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-buttons {
    animation-delay: 0.4s;
}

.hero-visual {
    animation: fadeInUp 0.6s ease 0.5s forwards;
    opacity: 0;
}

/* ============================================
   ROMANTIC ILLUSTRATIONS & DECORATIONS
   ============================================ */

/* Floating Hearts Animation */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-heart {
    position: absolute;
    font-size: 1.5rem;
    animation: floatHeart 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-heart:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.floating-heart:nth-child(2) {
    left: 15%;
    animation-delay: 1s;
    font-size: 1.8rem;
    color: #ff6b9d;
}

.floating-heart:nth-child(3) {
    left: 25%;
    animation-delay: 2s;
    font-size: 1rem;
}

.floating-heart:nth-child(4) {
    left: 40%;
    animation-delay: 0.5s;
    font-size: 1.5rem;
    color: #ffb6c1;
}

.floating-heart:nth-child(5) {
    left: 55%;
    animation-delay: 1.5s;
    font-size: 1.3rem;
}

.floating-heart:nth-child(6) {
    left: 70%;
    animation-delay: 2.5s;
    font-size: 2rem;
    color: #ff8fab;
}

.floating-heart:nth-child(7) {
    left: 85%;
    animation-delay: 0.8s;
    font-size: 1.1rem;
}

.floating-heart:nth-child(8) {
    left: 95%;
    animation-delay: 1.8s;
    font-size: 1.6rem;
    color: #ffc0cb;
}

@keyframes floatHeart {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-20vh) rotate(360deg);
        opacity: 0;
    }
}

/* Couple Illustration Container */
.couple-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    position: relative;
}

.couple-illustration::before {
    content: '💕';
    position: absolute;
    top: -2rem;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.person-silhouette {
    width: 80px;
    height: 140px;
    background: linear-gradient(135deg, #ff8fab 0%, #ff6b9d 100%);
    border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.person-silhouette.male {
    background: linear-gradient(135deg, #6bb3ff 0%, #4a9eff 100%);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.person-silhouette::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: inherit;
    border-radius: 50%;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

/* Holding Hands Heart */
.love-hands {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.love-hands-svg {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(255, 107, 157, 0.3));
}

/* Decorative Love Elements */
.love-decoration {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
}

.love-decoration.top-left {
    top: 10%;
    left: 5%;
}

.love-decoration.top-right {
    top: 15%;
    right: 8%;
}

.love-decoration.bottom-left {
    bottom: 20%;
    left: 8%;
}

.love-decoration.bottom-right {
    bottom: 10%;
    right: 5%;
}

/* Romantic Section Background */
.romantic-bg {
    background: linear-gradient(135deg,
            rgba(255, 182, 193, 0.05) 0%,
            rgba(255, 107, 157, 0.03) 50%,
            rgba(255, 143, 171, 0.05) 100%);
    position: relative;
}

.romantic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='50' height='50'%3E%3Cpath d='M50 30 Q55 20 65 25 Q80 35 50 55 Q20 35 35 25 Q45 20 50 30' fill='%23ffb6c1' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Love Quote Card */
.love-quote-card {
    background: linear-gradient(135deg, #fff5f7 0%, #fff0f3 100%);
    border: 1px solid rgba(255, 107, 157, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.love-quote-card::before {
    content: '❤️';
    position: absolute;
    font-size: 8rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Pulse Animation for Hearts */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Heart Beat Animation */
@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.15);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.15);
    }

    40% {
        transform: scale(1);
    }
}

.heart-beat {
    animation: heartBeat 1.5s ease-in-out infinite;
    display: inline-block;
}

/* Couple Walking Illustration */
.couple-walking {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 3rem;
    position: relative;
    animation: walkTogether 3s ease-in-out infinite;
}

@keyframes walkTogether {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Love Birds Animation */
.love-birds {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    margin: 1rem 0;
}

.love-birds span:first-child {
    animation: birdLeft 2s ease-in-out infinite;
}

.love-birds span:last-child {
    animation: birdRight 2s ease-in-out infinite;
}

@keyframes birdLeft {

    0%,
    100% {
        transform: translateX(0) rotate(-5deg);
    }

    50% {
        transform: translateX(8px) rotate(5deg);
    }
}

@keyframes birdRight {

    0%,
    100% {
        transform: translateX(0) rotate(5deg) scaleX(-1);
    }

    50% {
        transform: translateX(-8px) rotate(-5deg) scaleX(-1);
    }
}

/* Romantic Feature Card */
.feature-card.romantic {
    background: linear-gradient(135deg, #fff8fa 0%, #fff0f3 100%);
    border: 1px solid rgba(255, 143, 171, 0.2);
}

.feature-card.romantic:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.15);
}

/* Stats with Love Theme */
.stat-item.love-theme h3 {
    color: #ff6b9d;
}

/* Hero With Romance */
.hero.romantic {
    position: relative;
}

.hero.romantic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 143, 171, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ============================================
   MODAL POPUP STYLES
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem;
    overflow: hidden;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 107, 157, 0.1);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 85vh;
    overflow: hidden;
    text-align: center;
}

.modal-body {
    padding: 2.5rem 2.5rem 2rem;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 157, 0.3) transparent;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 157, 0.3);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 157, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 1.3rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 107, 157, 0.15);
    color: #ff6b9d;
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease 0.2s both;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-title {
    font-family: "Sora", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: rgba(45, 45, 45, 0.6);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Panduan List */
.panduan-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.panduan-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #fff5f7 0%, #fff0f3 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.panduan-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #ff6b9d, #e85a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
    margin-top: 2px;
}

.panduan-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.panduan-text strong {
    font-size: 0.95rem;
    color: #2d2d2d;
    font-weight: 600;
}

.panduan-text span {
    font-size: 0.85rem;
    color: rgba(45, 45, 45, 0.6);
    font-weight: 300;
    line-height: 1.5;
}

/* Modal Buttons */
.modal-btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #e85a8a);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.35);
    width: 100%;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.45);
}

.modal-btn-secondary {
    background: transparent;
    color: #666;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.25);
}

.modal-btn-back {
    background: #2d2d2d;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.modal-btn-back:hover {
    background: #444;
    transform: translateY(-1px);
}

/* Konfirmasi Question */
.modal-konfirmasi .modal-body {
    padding: 2.5rem 2rem 2rem;
}

.modal-konfirmasi .modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.modal-konfirmasi .modal-subtitle {
    margin-bottom: 1.5rem;
}

.konfirmasi-question {
    background: linear-gradient(135deg, #fff5f7, #fff0f3);
    border: 1px solid rgba(255, 107, 157, 0.15);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    margin-bottom: 1.8rem;
}

.konfirmasi-question p {
    font-size: 1.05rem;
    color: #2d2d2d;
    line-height: 1.7;
}

.konfirmasi-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 0.5rem;
}

/* Belum Pacaran Message */
.belum-pacaran-msg {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e8f4fd);
    border: 1px solid rgba(100, 180, 255, 0.2);
    border-radius: 16px;
    animation: fadeInUp 0.4s ease;
}

.belum-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.belum-pacaran-msg p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Modal Mobile */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 0.5rem;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .panduan-item {
        padding: 0.8rem 1rem;
    }
}