/* Global Styles */
:root {
    --gradient-start: #FF8FAB;
    --gradient-mid: #FFB3C6;
    --gradient-end: #FFC4D6;
    --accent-pink: #FF4D8D;
    --accent-rose: #FF8FAB;
    --accent-lavender: #E2B4FF;
    --accent-purple: #9F2BC1;
    --light-color: #ffffff;
    --text-color: #1A202C;
    --text-light: #2D3748;
    --background-light: #FFF5F7;
    --shadow-color: rgba(159, 43, 193, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--background-light) 0%, #FFFFFF 100%) fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
}

section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

section .container {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--light-color);
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

nav.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 77, 141, 0.1);
}

nav.hide {
    transform: translateY(-100%);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.apply-btn {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: var(--light-color) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    opacity: 1 !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.2);
    transition: all 0.3s ease !important;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 141, 0.3);
}

.apply-btn::after {
    display: none;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        display: block;
    }

    .nav-links .apply-btn {
        margin-top: 2rem;
        width: 100%;
        text-align: center;
    }

    /* Ensure nav is always visible when menu is open */
    nav.scroll-down .nav-links.active {
        transform: none;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-content {
        padding-top: 0;
        margin-bottom: 3rem;
    }
    
    .circle-composition {
        margin-right: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section Animations */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.circle-composition {
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Feature Card Animations */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Form Animations */
.form-group {
    transition: all 0.3s ease;
}

input, textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input:focus, textarea:focus {
    transform: translateY(-2px);
}

.submit-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-button:active::after {
    width: 400px;
    height: 400px;
}

/* Loading Animation Enhancement */
@keyframes spin {
    to { 
        transform: rotate(360deg);
    }
}

.loading {
    animation: spin 1s linear infinite;
}

/* Success Animation */
@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon {
    animation: checkmark 0.5s ease-out;
}

/* Error Message Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-message {
    animation: shake 0.5s ease-in-out;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    opacity: 0.95;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center !important;
    min-height: calc(100vh - 180px);
}

.hero-grid {
    align-items: center !important;
}

.image-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 500px;
    min-height: 400px;
    max-height: 600px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--light-color);
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-highlight {
    font-size: 5.7rem;
    font-weight: 800;
    line-height: 1;
    margin: 2rem 0;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    min-height: 7rem;
}

.typed-text {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor {
    display: inline-block;
    width: 3px;
    margin-left: 0.1em;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 0.3rem;
}

.hero-stats .stat-label {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 1s both;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 600px;
}

.image-container {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    width: 400px;
    height: 500px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.secondary-image {
    width: 300px;
    height: 400px;
    left: 0;
    top: 0;
    z-index: 1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.float-card {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
    cursor: default;
}

.float-card.earnings { top: 8%; right: -30px; animation-delay: 0.5s; }
.float-card.followers { bottom: 8%; left: -30px; animation-delay: 1s; }
.float-card.earnings-top { top: 70%; right: 5%; animation-delay: 1.5s; }
.float-card.response-time { bottom: 18%; left: 25%; animation-delay: 2s; }

.float-card i {
    color: var(--accent-pink);
    font-size: 1.2rem;
}

.float-content {
    display: flex;
    flex-direction: column;
}

.float-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.float-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero-highlight {
        font-size: 5.5rem;
        min-height: 5.5rem;
    }
    
    .main-image {
        width: 350px;
        height: 450px;
    }
    
    .secondary-image {
        width: 250px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats .stat {
        text-align: center;
    }
    
    .image-stack {
        height: 500px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-image {
        width: 300px;
        height: 400px;
        position: relative;
        right: -50px;
        top: 0;
        transform: none;
    }
    
    .secondary-image {
        width: 220px;
        height: 300px;
        left: -50px;
        top: 50px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-highlight {
        font-size: 4rem;
        min-height: 4rem;
    }
    
    .hero-cta {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .image-stack {
        height: 400px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-image {
        width: 240px;
        height: 320px;
        right: -30px;
    }
    
    .secondary-image {
        width: 180px;
        height: 240px;
        left: -30px;
        top: 40px;
    }
    
    .float-card {
        padding: 0.8rem 1.2rem;
    }
    
    .float-card.earnings { right: 0; }
    .float-card.followers { left: 0; }
    
    .cursor {
        width: 2px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-highlight {
        font-size: 3.5rem;
        min-height: 3.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .image-stack {
        height: 350px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .main-image {
        width: 200px;
        height: 280px;
        right: -20px;
    }
    
    .secondary-image {
        width: 150px;
        height: 200px;
        left: -20px;
        top: 30px;
    }
    
    .float-card {
        transform: scale(0.9);
    }
    
    .cursor {
        width: 1px;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2 {
    color: var(--light-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    letter-spacing: -1px;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 77, 141, 0.2);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--light-color);
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 77, 141, 0.1);
    color: var(--accent-pink);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    display: inline-block;
    margin-right: 0.8rem;
    color: var(--accent-pink);
    font-weight: bold;
}

/* Responsive adjustments for About section */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }

    .about h2 {
        font-size: 2.5rem;
    }

    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

/* Instagram Section */
.instagram {
    padding: 120px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 143, 171, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.instagram .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.instagram-content {
    max-width: 600px;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 77, 141, 0.1);
    color: var(--accent-pink);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.instagram h2 {
    color: var(--text-color);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.section-intro {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.section-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.instagram-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    color: var(--accent-pink);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-color);
    font-weight: 500;
}

.instagram-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar-group {
    display: flex;
    margin-right: 1rem;
}

.testimonial-avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--light-color);
    margin-left: -10px;
    object-fit: cover;
}

.testimonial-avatar-group img:first-child {
    margin-left: 0;
}

.testimonial-preview p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Instagram Visual Section */
.instagram-visual {
    position: relative;
    height: 600px;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: var(--light-color);
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: var(--text-color);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 2;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fafafa;
    overflow: hidden;
}

.instagram-post {
    margin: 60px 10px;
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.post-header i {
    color: var(--accent-pink);
    font-size: 1.5rem;
}

.post-header span {
    font-weight: 600;
    color: var(--text-color);
}

.post-content img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
}

.post-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-stats i {
    color: var(--accent-pink);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    padding: 1rem 1.5rem;
    background: var(--light-color);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 6s ease-in-out infinite;
}

.float-item.likes {
    top: 20%;
    right: -20px;
    animation-delay: 0.5s;
}

.float-item.followers {
    bottom: 25%;
    left: -20px;
    animation-delay: 1s;
}

.float-item i {
    color: var(--accent-pink);
    font-size: 1.2rem;
}

.float-item span {
    color: var(--text-color);
    font-weight: 600;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design for Instagram Section */
@media (max-width: 1200px) {
    .instagram .container {
        gap: 2rem;
    }

    .instagram h2 {
        font-size: 3rem;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 992px) {
    .instagram .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .instagram-content {
        max-width: 100%;
    }

    .instagram-features {
        justify-content: center;
    }

    .instagram-cta {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup {
        transform: none;
        margin-top: 3rem;
    }

    .phone-mockup:hover {
        transform: none;
    }

    .float-item {
        display: none;
    }
}

@media (max-width: 768px) {
    .instagram {
        padding: 80px 0;
    }

    .instagram h2 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .instagram-features {
        flex-direction: column;
        align-items: center;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

/* Case Studies Section */
.case-studies {
    padding: 120px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 143, 171, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.case-studies .container {
    position: relative;
    z-index: 2;
}

.case-studies h2 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
}

.case-studies .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.case-study-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-card.featured {
    position: relative;
}

.case-study-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-purple));
    z-index: 1;
}

.case-study-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-overlay {
    transform: translateY(0);
}

.metrics {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.9;
}

.case-study-content {
    padding: 2rem;
}

.creator-info {
    margin-bottom: 1rem;
}

.creator-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.creator-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 77, 141, 0.1);
    color: var(--accent-pink);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.case-study-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.time-period {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.time-period i {
    color: var(--accent-pink);
}

.case-studies-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.success-stats .stat {
    text-align: center;
}

.success-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-stats .stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Responsive Design for Case Studies */
@media (max-width: 1200px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .case-studies {
        padding: 80px 0;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 3rem;
    }

    .case-study-image {
        height: 250px;
    }

    .case-study-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    }

    .success-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .case-studies h2 {
        font-size: 2.5rem;
    }

    .case-studies .section-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .case-study-content {
        padding: 1.5rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .success-stats .stat-number {
        font-size: 2rem;
    }
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 143, 171, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq h2 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
}

.faq .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 143, 171, 0.1);
}

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

.faq-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background: rgba(255, 143, 171, 0.05);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon i {
    color: var(--light-color);
    font-size: 1.5rem;
}

.faq-title {
    flex-grow: 1;
}

.faq-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 77, 141, 0.1);
    color: var(--accent-pink);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.faq-title h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--accent-pink);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    background: rgba(255, 77, 141, 0.1);
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 2rem;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-content {
    padding: 0 2rem 2rem;
    height: auto;
    opacity: 1;
}

.faq-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* FAQ Features */
.faq-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-feature i {
    color: var(--accent-pink);
}

.faq-feature span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Timeline */
.faq-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 2rem;
    padding: 0 1rem;
}

.faq-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-purple));
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    background: var(--light-color);
    padding: 0 10px;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

/* Content Pillars */
.content-pillars {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    text-align: center;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pillar i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pillar span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Results Chart */
.results-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    margin-top: 2rem;
    padding: 0 1rem;
}

.chart-bar {
    width: 60px;
    height: calc(var(--height) * 200px / 100);
    background: linear-gradient(to top, var(--accent-pink), var(--accent-purple));
    border-radius: 10px 10px 0 0;
    position: relative;
    transition: height 0.3s ease;
}

.chart-bar span {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--text-light);
    white-space: nowrap;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 143, 171, 0.1);
}

.faq-cta p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq {
        padding: 80px 0;
    }

    .faq-features {
        grid-template-columns: 1fr 1fr;
    }

    .content-pillars {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .pillar {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .faq h2 {
        font-size: 2.5rem;
    }

    .faq .section-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .faq-header {
        padding: 1.5rem;
        gap: 1rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon i {
        font-size: 1.2rem;
    }

    .faq-title h3 {
        font-size: 1.1rem;
    }

    .faq-features {
        grid-template-columns: 1fr;
    }

    .faq-timeline {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .faq-timeline::before {
        display: none;
    }

    .timeline-item {
        width: calc(50% - 1rem);
    }

    .results-chart {
        height: 150px;
    }

    .chart-bar {
        width: 40px;
    }
}

/* Add JavaScript for FAQ toggle functionality */
@keyframes slideDown {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--content-height);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        height: var(--content-height);
        opacity: 1;
    }
    to {
        height: 0;
        opacity: 0;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--background-light);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%23FFB3C6" fill-opacity="0.2"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    color: var(--text-color);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-purple));
    border-radius: 2px;
}

.form-group {
    margin-bottom: 2rem;
}

input, textarea {
    width: 100%;
    padding: 1.2rem;
    background: #FFFFFF;
    border: 2px solid rgba(159, 43, 193, 0.1);
    border-radius: 15px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(159, 43, 193, 0.05);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.1);
    background: #FFFFFF;
}

input::placeholder, textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.submit-button {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    color: var(--light-color);
    padding: 1.2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.2);
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 141, 0.3);
}

.submit-button:disabled {
    background: linear-gradient(135deg, #FFB3C6 0%, #E2B4FF 100%);
    opacity: 0.7;
}

/* Footer */
footer {
    background: #FFFFFF;
    border-top: 1px solid rgba(255, 143, 171, 0.1);
    color: var(--text-color);
    padding: 80px 0 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--accent-pink);
}

.social-links a {
    color: var(--text-light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-pink);
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,143,171,0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--accent-pink);
    color: var(--light-color);
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 60, 0.3);
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--text-color);
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--text-color);
}

.secondary-button:hover {
    background: var(--text-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 4rem;
    }
    
    .hero-highlight {
        font-size: 5rem;
    }
    
    .circle-composition {
        width: 500px;
        height: 500px;
    }
    
    .circle-main {
        width: 400px;
        height: 400px;
    }
    
    .circle-small {
        width: 250px;
        height: 250px;
        right: 80px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-highlight {
        font-size: 2.96rem;
    }
    
    .circle-composition {
        width: 100%;
        height: 400px;
    }
    
    .circle-main {
        width: 300px;
        height: 300px;
        right: 50%;
        transform: translate(50%, -50%);
    }
    
    .circle-small {
        width: 200px;
        height: 200px;
        right: 50%;
        transform: translateX(80%);
    }

    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }

    .contact h2 {
        font-size: 2.2rem;
    }

    input, textarea {
        font-size: 16px; /* Prevent zoom on mobile */
    }
}

/* Add section dividers instead of color changes */
section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

/* Update form and card backgrounds */
.contact-form, 
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 143, 171, 0.1);
}

/* Add subtle gradient overlays for depth */
.hero::after,
.about::after,
.faq::after,
.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px var(--shadow-color);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: #FFFFFF;
    border: 2px solid rgba(159, 43, 193, 0.1);
    border-radius: 15px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(159, 43, 193, 0.05);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.1);
    background: #FFFFFF;
}

input::placeholder, textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    color: var(--light-color);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 77, 141, 0.2);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 141, 0.3);
}

.submit-button:disabled {
    background: linear-gradient(135deg, #FFB3C6 0%, #E2B4FF 100%);
    opacity: 0.7;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 143, 171, 0.3);
    border-top-color: var(--accent-pink);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success State */
.success-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--accent-pink);
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
}

.submit-button.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
}

/* Form Errors */
.form-errors {
    margin-bottom: 1.5rem;
    animation: slideIn 0.3s ease-out;
}

.error-message {
    background: #FFF5F7;
    border: 2px solid var(--accent-pink);
    padding: 1rem;
    border-radius: 15px;
    color: var(--accent-pink);
}

.error-message ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.error-message li {
    margin-bottom: 0.5rem;
}

.error-message li:last-child {
    margin-bottom: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Field Validation States */
input:invalid, textarea:invalid {
    border-color: rgba(239, 68, 68, 0.3);
}

input:valid, textarea:valid {
    border-color: rgba(34, 197, 94, 0.3);
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    input, textarea {
        font-size: 16px; /* Prevent zoom on mobile */
    }
}

/* Small decorative floating icons */
.float-icon {
    position: absolute;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 77, 141, 0.10);
    z-index: 4;
    opacity: 0.85;
    font-size: 1.2rem;
    pointer-events: none;
    animation: float 7s ease-in-out infinite;
}
.float-icon-heart { top: 10%; left: 60%; color: #FF4D8D; animation-delay: 0.2s; }
.float-icon-star { bottom: 12%; right: 18%; color: #FFD700; animation-delay: 1.1s; }
.float-icon-fire { top: 65%; left: 8%; color: #FF5722; animation-delay: 2.2s; }
.float-icon-crown { bottom: 8%; right: 5%; color: #9F2BC1; animation-delay: 3.1s; }

#geo-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #FF8FAB 0%, #FFC4D6 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.geo-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.geo-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #fff;
    border-top: 6px solid #FF4D8D;
    border-radius: 50%;
    animation: geo-spin 1s linear infinite;
    margin-bottom: 2rem;
}
@keyframes geo-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}