/* ============================== */
/* CSS VARIABLES & GLOBAL STYLES */
/* ============================== */
:root {
    --text-main: #333333;
    --text-light: #666666;
    --teal: #68C1C7;
    --pink-solid: #F06292;
    --white: #FFFFFF;
    --bg-dreamy: radial-gradient(circle at 10% 20%, rgba(248, 187, 208, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(209, 196, 233, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(179, 229, 252, 0.4) 0%, transparent 50%),
        #FAFAFA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dreamy);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.serif-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #2c2c2c;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ============================== */
/* BUTTONS                        */
/* ============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
}

.btn-pink {
    background: linear-gradient(135deg, #FF527B, #B533FF);
    box-shadow: 0 8px 25px rgba(255, 82, 123, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-pink:hover {
    box-shadow: 0 12px 30px rgba(255, 82, 123, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #FF3D6A, #9F10FF);
}

.btn-blue {
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-blue:hover {
    box-shadow: 0 12px 30px rgba(0, 198, 255, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #00B4E8, #005EE6);
}

/* ============================== */
/* HEADER & NAVIGATION            */
/* ============================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-main);
    font-weight: 500;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.header-contact .insta {
    transition: 0.3s;
}

.header-contact .insta:hover {
    color: #FF527B;
}

.header-nav-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a:hover {
    color: #FF527B;
    transition: 0.3s;
}

.mobile-header-actions {
    display: none;
}

/* Animated Hamburger Menu */
.mobile-menu-btn {
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--teal);
    border-radius: 3px;
    right: 0;
    transition: all 0.4s ease-in-out;
}

.mobile-menu-btn .bar:nth-child(1) {
    top: 0;
}

.mobile-menu-btn .bar:nth-child(2) {
    top: 8.5px;
    width: 70%;
}

.mobile-menu-btn .bar:nth-child(3) {
    top: 17px;
}

.mobile-menu-btn.active .bar:nth-child(1) {
    top: 8.5px;
    transform: rotate(45deg);
    background-color: #FF527B;
    width: 100%;
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px);
}

.mobile-menu-btn.active .bar:nth-child(3) {
    top: 8.5px;
    transform: rotate(-45deg);
    background-color: #FF527B;
}

/* ============================== */
/* HERO SECTION                   */
/* ============================== */
#home {
    padding-top: 170px;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-text h1 span {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: bolder;
    background-image: linear-gradient(135deg, #00C6FF, #0072FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.check-list li i {
    color: #FF527B;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container img {
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid #fff;
}

/* Wave SVG */
.wave-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin-top: -50px;
    z-index: 0;
}

.wave-container svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    fill: rgba(255, 255, 255, 0.8);
}

/* ============================== */
/* TRUST SECTION                  */
/* ============================== */
.trust-icon {
    font-size: 26px;
    margin-bottom: 20px;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    border: 3px solid #fff;
}

.icon-blue {
    background: linear-gradient(135deg, #00C6FF, #0072FF);
    box-shadow: 0 10px 25px rgba(0, 198, 255, 0.4);
}

.icon-pink {
    background: linear-gradient(135deg, #FF527B, #B533FF);
    box-shadow: 0 10px 25px rgba(255, 82, 123, 0.4);
}

.icon-teal {
    background: linear-gradient(135deg, #00E1D9, #0093E9);
    box-shadow: 0 10px 25px rgba(0, 225, 217, 0.4);
}

#trust {
    padding: 40px 0 80px;
    position: relative;
    z-index: 2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 1);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
}

.trust-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.trust-card p {
    font-size: 1rem;
    color: var(--text-light);
}

/* ============================== */
/* PERFORMANCE SECTION            */
/* ============================== */
#performance {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.perf-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 82, 123, 0.3);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.perf-glow-2 {
    position: absolute;
    bottom: -150px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: rgba(0, 198, 255, 0.25);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.perf-container-centered {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 82, 123, 0.1);
    color: #FF527B;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 82, 123, 0.2);
}

/* ============================== */
/* SERVICES SECTION               */
/* ============================== */
#services {
    padding: 100px 0;
    background: var(--bg-dreamy);
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.section-title-line {
    height: 2px;
    width: 60px;
    background: #FF527B;
    border-radius: 2px;
}

.section-title-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================== */
/* TESTIMONIALS SECTION           */
/* ============================== */
#testimonials {
    padding: 100px 0;
    background: #fff;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
}

.slider-track {
    display: flex;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slider-item {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 15px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(0.85);
    opacity: 0.5;
    cursor: pointer;
}

.slider-item.active {
    transform: scale(1.05);
    opacity: 1;
    z-index: 2;
}

.testimonial-card {
    background: rgba(250, 250, 250, 0.95);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 380px;
}

.stars {
    color: #FF527B;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.creator-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.creator-profile img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FF527B;
    padding: 2px;
}

.creator-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-family: 'Playfair Display', serif;
}

.creator-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.slider-arrow {
    background: #fff;
    border: none;
    color: #FF527B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #FF527B, #B533FF);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 82, 123, 0.4);
    transform: translateY(-3px);
    border: none;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 82, 123, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.dot.active {
    background: #FF527B;
    width: 30px;
    border-radius: 10px;
}

/* ============================== */
/* HOW TO JOIN SECTION            */
/* ============================== */
#process {
    padding: 100px 0;
    background: var(--bg-dreamy);
}

.process-list {
    max-width: 750px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.process-number {
    background: linear-gradient(135deg, #FF527B, #B533FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 700;
    min-width: 70px;
}

.process-text h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.process-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* ============================== */
/* FAQ SECTION                    */
/* ============================== */
#faq {
    padding: 100px 0;
    background: #fff;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fafafa;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 25px 35px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 82, 123, 0.4);
    box-shadow: 0 15px 30px rgba(255, 82, 123, 0.05);
    background: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

.faq-question i {
    color: #FF527B;
    transition: transform 0.4s ease;
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-light);
}

.faq-answer p {
    padding-top: 15px;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* ============================== */
/* APPLICATION FORM               */
/* ============================== */
#apply {
    padding: 120px 0;
    background: var(--bg-dreamy);
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-row-full {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    background: #fafafa;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF527B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #FF527B;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 82, 123, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #FF527B;
    margin: 0;
}

.checkbox-group label {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

/* ============================== */
/* FOOTER                         */
/* ============================== */
footer {
    background: #fff;
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
    margin: auto;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

footer .insta:hover {
    color: #FF527B;
    transition: 0.3s;
}