/* Romantic Color Palette - Soft Pinks, Warm Creams, Deep Reds */
:root {
    --gradient-primary: linear-gradient(135deg, #8b1538 0%, #c7365f 50%, #e84393 100%);
    --gradient-secondary: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 50%, #fd79a8 100%);
    --gradient-tertiary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #fd79a8 100%);
    --gradient-romantic: linear-gradient(135deg, #ff7675 0%, #fd79a8 50%, #fdcb6e 100%);
    --gradient-warm: linear-gradient(135deg, #fab1a0 0%, #fd79a8 50%, #e84393 100%);
    --gradient-cool: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
    --gradient-sunset: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 50%, #e17055 100%);
    --gradient-ocean: linear-gradient(135deg, #74b9ff 0%, #00b894 50%, #00cec9 100%);
    --gradient-purple: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #fd79a8 100%);
    --gradient-peach: linear-gradient(135deg, #fdcb6e 0%, #fab1a0 50%, #fd79a8 100%);
    --gradient-dark-romantic: linear-gradient(135deg, #2d3436 0%, #636e72 50%, #74b9ff 100%);
    --gradient-intimate: linear-gradient(135deg, #74b9ff 0%, #6c5ce7 50%, #fd79a8 100%);
    --gradient-passion: linear-gradient(135deg, #8b1538 0%, #dc143c 50%, #ff69b4 100%);
    
    /* Romantic solid colors */
    --text-primary: #ffffff;
    --text-secondary: #f8f9fa;
    --text-accent: #2d3436;
    --accent-color: #fd79a8;
    --deep-red: #8b1538;
    --soft-pink: #ffc0cb;
    --warm-cream: #ffe4e6;
    --romantic-purple: #dda0dd;
    --romantic-blue: #74b9ff;
}


/* ******************************************** Animation ******************************************** */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes miniFeatureSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes featureSlideIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expandUnderline {
    from { width: 0; }
    to { width: 100px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes cardReveal {
    from { opacity: 0; transform: translateY(50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dramaticFadeIn {
    from { opacity: 0; transform: scale(0.8) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInFromBottom {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dramaticSlideIn {
    from { opacity: 0; transform: translateX(-30px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

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

/* Flashing animation for early subscriber link */
@keyframes flash {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

/* Flip animation for form containers */
@keyframes flipIn {
    from { 
        transform: rotateY(90deg);
        opacity: 0;
    }
    to { 
        transform: rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipOut {
    from { 
        transform: rotateY(0deg);
        opacity: 1;
    }
    to { 
        transform: rotateY(-90deg);
        opacity: 0;
    }
}







/******************************************* Html & Body Styling *******************************************/
html {
  scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%) !important;
    /* background-size: 400% 400% !important; */
    animation: gentleGradientShift 25s ease infinite !important;
    min-height: 100vh;
    color: var(--text-accent) !important;
}





/******************************************* Navigation Bar Section *******************************************/
.header {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9) 0%, rgba(108, 92, 231, 0.8) 50%, rgba(221, 160, 221, 0.85) 100%) !important;
    backdrop-filter: blur(35px) !important;
    box-shadow: 0 4px 25px rgba(139, 21, 56, 0.4) !important;
    border-bottom: 1px solid rgba(221, 160, 221, 0.5) !important;
    position: relative !important;
    z-index: 1000 !important;
    animation: navbarRomanticFlow 30s ease infinite !important;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2) 0%, rgba(253, 121, 168, 0.1) 100%);
    z-index: -1;
}

.logo {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 8px rgba(139, 21, 56, 0.5) !important;
    font-weight: 600 !important;
}

.logo span {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 3px rgba(139, 21, 56, 0.3) !important;
}

.nav-menu a:hover {
    color: rgba(255, 228, 225, 1) !important;
    text-shadow: 0 2px 10px rgba(255, 192, 203, 0.6) !important;
    transform: translateY(-1px) !important;
}

.logo-image {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    margin-right: 0.5rem !important;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3)) brightness(1.1) !important;
    animation: 
        compassRotation 20s linear infinite,
        compassPulse 4s ease-in-out infinite !important;
    transform-origin: center center !important;
    transition: filter 0.3s ease !important;
}













/******************************************* Hero Image Section *******************************************/
.hero-image-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fad0c4 100%);
    background-size: 400% 400%;
    animation: gentleGradientShift 25s ease infinite;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-fullsize-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(139, 21, 56, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 206, 239, 0.4) 100%
    );
    z-index: 3;
}

/* Hero Quote and Button Styling */
.hero-quote {
    position: absolute;
    top: 20%;
    right: 5%;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 4;
}

.hero-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #8b1538;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    font-weight: 500;
}

.hero-quote cite {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.hero-buttons {
    position: absolute;
    bottom: 10%;
    left: 5%;
    display: flex;
    gap: 1rem;
    z-index: 4;
    width: 30%;
}

.hero-btn {
   
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    min-width: 200px;
}

.btn-primary.hero-btn {
    background: linear-gradient(135deg, #8b1538 0%, #c7365f 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
}

.btn-primary.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.6);
    background: linear-gradient(135deg, #a01d4a 0%, #d84371 100%);
}

.btn-secondary.hero-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #8b1538;
    border: 2px solid rgba(139, 21, 56, 0.3);
}

.btn-secondary.hero-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 21, 56, 0.5);
}









/****************************************** Mission Section ******************************************/
.mission {
    background: var(--gradient-secondary) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 16s ease infinite !important;
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cool);
    opacity: 0.15;
}

.mission-content {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-text {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mission-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-stat h3 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-sunset) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 0.5rem;
}

.mission-stat p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.mission-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.mission-section {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fad0c4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(253, 121, 168, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(221, 160, 221, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.mission-content {
    text-align: center;
}

.mission-section .mission-container .mission-content .mission-values {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 1.5rem !important;
    flex-wrap: nowrap !important;
}

.mission-section .mission-container .mission-content .mission-values .value-card {
    flex: 1 1 0 !important;
    max-width: none !important;
    min-width: 280px !important;
}

.mission-intro{
    display:flex;
    flex-direction: row;
}
/* Impact Statistics - Attention Grabber */
.mission-impact {
    margin-bottom: 3rem;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: dramaticFadeIn 1.5s ease-out 0.5s forwards;
}

.mission-section .stat-number,
.impact-stat .stat-number {
    font-size: 4rem !important;
    font-weight: 900 !important;
    color: #b41b1b !important;
    text-shadow: 0 4px 8px rgba(220, 20, 60, 0.3) !important;
    opacity: 0;
    animation: countUp 2s ease-out 1s forwards, pulse 2s ease-in-out 3s infinite;
}

.mission-section .stat-label,
.impact-stat .stat-label {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    opacity: 0;
    animation: slideInFromBottom 1s ease-out 2s forwards;
}

.impact-message {
    opacity: 0;
    animation: dramaticSlideIn 1.2s ease-out 2.5s forwards;
}

.mission-title {
    font-size: 3rem;
    font-weight: 800;
    color: #8b1538;
    margin: 0;
    text-shadow: 0 3px 6px rgba(139, 21, 56, 0.2);
    position: relative;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fd79a8, #e84393);
    border-radius: 2px;
    animation: expandUnderline 1s ease-out 3.5s forwards;
}

/* Mission Statement */
.mission-statement {
    margin: 3rem 0;
    margin-left: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 4s forwards;
}

.mission-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b1538;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: typeWriter 2s ease-out 4.5s forwards;
}

.mission-description {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    padding-left: 0.5rem;
}

/* Value Cards */
.mission-values {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    margin-top: 4rem !important;
    flex-wrap: nowrap !important;
}

.value-card {
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: cardReveal 0.8s ease-out forwards;
    flex: 1 1 calc(33.333% - 1rem) !important;
    max-width: 350px !important;
    min-width: 280px !important;
    position: relative;
    overflow: hidden;
}
.value-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f4f4f4;
    margin-bottom: 1rem;
}

.value-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-card:nth-child(1) {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 50%, #fd79a8 100%);
    animation-delay: 5.5s;
}
.value-card:nth-child(1) h4{
font-size: 1.3rem;
}

.value-card:nth-child(2) {
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 50%, #e84393 100%);
    animation-delay: 5.8s;
}

.value-card:nth-child(3) {
    background: linear-gradient(135deg, #74b9ff 0%, #a29bfe 50%, #fd79a8 100%);
    animation-delay: 6.1s;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 1;
}

















/******************************************** Features Section********************************************/
.features-section {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 30%, #fad0c4 50%, #f8f9fa 70%, #fdf2f8 85%, #fce7f3 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 30% 20%, 
        rgba(253, 121, 168, 0.08) 0%, 
        transparent 50%
    ),
    radial-gradient(
        ellipse at 70% 80%, 
        rgba(139, 21, 56, 0.05) 0%, 
        transparent 50%
    ),
    linear-gradient(
        to bottom,
        rgba(255, 154, 158, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(248, 249, 250, 0.3) 100%
    );
    z-index: 1;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #8b1538;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 6px rgba(139, 21, 56, 0.2);
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #fd79a8, #e84393);
    border-radius: 2px;
}

.features-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-showcase {
    margin-bottom: 6rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    animation: featureSlideIn 0.8s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.6s; }
.feature-item:nth-child(3) { animation-delay: 1.0s; }

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1.2;
    padding: 1.5rem;
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white !important;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 20px rgba(253, 121, 168, 0.3);
}

.feature-icon-large i {
    color: white !important;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b1538;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #555;
}

.feature-benefits i {
    color: #fd79a8;
    font-size: 0.9rem;
}

.feature-visual {
    flex: 0.8;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-image {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: white;
}

.feature-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 45px;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fd79a8;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
    padding-left: 0.5rem;
}






/*************************************** Additional Features ***************************************/
.additional-features {
    margin-top: 6rem;
    padding: 0;
    background: transparent;
}

.additional-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #8b1538;
    margin-bottom: 3rem;
    text-shadow: 0 2px 6px rgba(139, 21, 56, 0.2);
}

.mini-features {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: miniFeatureSlideIn 0.8s ease-out forwards;
}

.mini-features:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.mini-feature {
    text-align: center;
    padding: 1rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
}

.mini-feature:hover {
    transform: translateY(-3px);
}

.mini-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 6px 15px rgba(253, 121, 168, 0.3);
    transition: all 0.3s ease;
}

.mini-feature:hover .mini-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(253, 121, 168, 0.4);
}

.mini-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b1538;
    margin-bottom: 0.8rem;
}

.mini-feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}






/**************************************** Waitlist Section ****************************************/
.waitlist-section {
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.waitlist-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.waitlist-content {
    text-align: center;
}

.waitlist-header {
    margin-bottom: 3rem;
}

.waitlist-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.waitlist-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.waitlist-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.waitlist-form-container {
    background: linear-gradient(145deg, 
        rgba(255, 252, 253, 0.98) 0%, 
        rgba(255, 247, 250, 0.95) 25%, 
        rgba(254, 240, 247, 0.96) 50%, 
        rgba(255, 245, 251, 0.94) 75%,
        rgba(255, 250, 252, 0.97) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    border: 3px solid;
    border-image: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.4) 0%, 
        rgba(255, 105, 180, 0.3) 25%, 
        rgba(255, 20, 147, 0.35) 50%, 
        rgba(255, 105, 180, 0.3) 75%, 
        rgba(255, 182, 193, 0.4) 100%) 1;
    border-radius: 32px;
    padding: 4rem 3.5rem;
    width: 100%;
    max-width: 1500px;
    margin: 2rem auto;
    box-shadow: 
        0 32px 100px rgba(255, 20, 147, 0.15),
        0 16px 50px rgba(255, 105, 180, 0.12),
        0 8px 25px rgba(255, 182, 193, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 -4px 24px rgba(255, 192, 203, 0.4) inset;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.waitlist-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        #ff1493 0%, 
        #ff69b4 15%, 
        #ff6347 30%, 
        #ffd700 45%, 
        #ff69b4 60%, 
        #da70d6 75%, 
        #ff1493 100%);
    background-size: 400% 100%;
    animation: luxuryGradientFlow 6s ease-in-out infinite;
    z-index: 2;
    border-radius: 32px 32px 0 0;
    opacity: 0.8;
}

.waitlist-form-container::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center, 
        rgba(255, 20, 147, 0.08) 0%, 
        rgba(255, 105, 180, 0.06) 30%, 
        rgba(255, 182, 193, 0.04) 50%, 
        transparent 80%);
    animation: luxuryAmbientGlow 12s ease-in-out infinite alternate;
    z-index: 0;
}

.waitlist-form-container:hover {
    transform: translateY(-4px) rotateX(2deg);
    box-shadow: 
        0 40px 120px rgba(255, 20, 147, 0.2),
        0 20px 60px rgba(255, 105, 180, 0.15),
        0 12px 35px rgba(255, 182, 193, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

/* Form heading styles */
.form-heading {
    text-align: center;
    margin: 2rem 0 2.5rem 0;
    padding: 0 1rem;
}

.form-heading h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.form-heading p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Support options layout */
.support-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.support-option {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.support-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.support-option:hover::before {
    opacity: 1;
}

/* Option header */
.option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.option-header .option-icon {
    font-size: 1.5rem;
    color: #fd79a8;
    margin-right: 0.75rem;
}

.option-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    flex: 1;
}

.option-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.free-badge {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.premium-badge {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;
}

/* Option description */
.option-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Donation features */
.donation-features {
    margin: 1.5rem 0;
    padding: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #00b894;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Button container */
.button-container {
    margin: 1.5rem 0 1rem 0;
    display: flex;
    justify-content: center;
}

/* Form group for new layout */
.support-option .form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Donation note */
.donation-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.donation-note i {
    color: #00b894;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Early Subscriber Link */
.early-subscriber-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: flash 2s infinite;
    z-index: 10;
}

.early-subscriber-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.subscriber-text {
    white-space: nowrap;
    font-size: 0.8rem;
}

.subscriber-chevron {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.early-subscriber-link:hover .subscriber-chevron {
    transform: translateX(3px);
}

/* Subscriber Form Container */
.subscriber-form-container {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(162, 155, 254, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    position: relative;
}

/* Back to Waitlist Link */
.back-to-waitlist-link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.back-to-waitlist-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.back-text {
    white-space: nowrap;
}

.back-chevron {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.back-to-waitlist-link:hover .back-chevron {
    transform: translateX(-3px);
}

/* Subscriber Stats */
.subscriber-stats {
    margin-bottom: 2rem;
}

/* Subscription Plan Selector */
.subscription-plan-selector {
    margin-bottom: 1.5rem;
}

.plan-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

.plan-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.plan-option {
    position: relative;
    flex: 1;
    max-width: 200px;
}

.plan-option input[type="radio"] {
    display: none;
}

.plan-option label {
    padding: 1.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.1) 0%, rgba(253, 121, 168, 0.05) 100%);
    backdrop-filter: blur(5px);
    transform: scale(1);
}

.plan-option label:hover {
    transform: scale(1.02);
    border-color: rgba(253, 121, 168, 0.5);
    box-shadow: 0 3px 10px rgba(253, 121, 168, 0.15);
}

.plan-option input[type="radio"]:checked + label {
    border-color: #00b894;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.3) 0%, rgba(0, 184, 148, 0.15) 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

.plan-option input[type="radio"]:checked + label .plan-name {
    color: #00b894;
}

.plan-option input[type="radio"]:checked + label .plan-price {
    color: #00b894;
}

.plan-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fd79a8;
    margin-bottom: 0.25rem;
}

.plan-savings {
    font-size: 0.8rem;
    color: #00b894;
    font-weight: 600;
    background: rgba(0, 184, 148, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.plan-original-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-top: 0.25rem;
    display: none;
    transition: all 0.3s ease;
}

.plan-option input[type="radio"]:checked + label .plan-original-price {
    display: block;
}

.plan-savings {
    font-size: 0.8rem;
    color: #00b894;
    font-weight: 600;
    background: rgba(0, 184, 148, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    display: none;
    transition: all 0.3s ease;
}

.plan-option input[type="radio"]:checked + label .plan-savings {
    display: block;
}

.plan-full-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.plan-option input[type="radio"]:checked + label .plan-full-price {
    opacity: 0;
}

.plan-price-full {
    display: inline;
}
.plan-price-discount {
    display: none;
}
.plan-option input[type="radio"]:checked + label .plan-price-full {
    display: none;
}
.plan-option input[type="radio"]:checked + label .plan-price-discount {
    display: inline;
}

/* Ensure both plan containers are the same height */
.plan-option label {
    height: 140px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Ensure all text elements within plan options are properly positioned */
.plan-option label .plan-name,
.plan-option label .plan-price,
.plan-option label .plan-savings,
.plan-option label .plan-original-price,
.plan-option label .plan-price-full,
.plan-option label .plan-price-discount {
    position: static;
    transform: none;
    margin-top: 0;
    top: auto;
    left: auto;
}

/* Subscriber Button */
.btn-subscriber {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

.btn-subscriber:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.btn-subscriber:active {
    transform: translateY(0);
}

/* Subscriber Benefits */
.subscriber-benefits {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(253, 121, 168, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(253, 121, 168, 0.2);
}

.subscriber-benefits h4 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.subscriber-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscriber-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: white;
    font-size: 0.95rem;
}

.subscriber-benefits i {
    color: #00b894;
    font-size: 0.9rem;
}

.waitlist-stats {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.stat-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.counter-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.form-group {
    display: flex;
    flex-direction: column; 
    gap: 1em;
}



.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.btn-waitlist {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, 
        #8b1538 0%, 
        #a61e4d 50%, 
        #d63384 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(139, 21, 56, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.btn-waitlist:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(139, 21, 56, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        #a61e4d 0%, 
        #d63384 50%, 
        #e91e63 100%);
}

.btn-waitlist:hover::before {
    left: 100%;
}

.btn-waitlist:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(139, 21, 56, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-waitlist .btn-text {
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-waitlist i {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-waitlist:hover i {
    transform: translateX(3px);
}

/* Button variants for new layout */
.btn-waitlist.free-btn {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    min-width: 180px;
}

.btn-waitlist.free-btn:hover {
    background: linear-gradient(135deg, #00a085 0%, #00b8b3 100%);
    box-shadow: 
        0 12px 35px rgba(0, 184, 148, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-waitlist.donation-btn {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.btn-waitlist.donation-btn:hover {
    background: linear-gradient(135deg, #fc5c93 0%, #fcbe56 100%);
    box-shadow: 
        0 12px 35px rgba(253, 121, 168, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-footer {
    margin-top: 1rem;
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 0.5rem;
}

.social-proof {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.testimonial-mini {
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.testimonial-content cite {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Success Message Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    font-size: 2rem;
    color: white;
}

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

.success-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-close:hover {
    color: var(--primary-color);
}






/*************************************** Contact Section Styles ***************************************/
.contact-section {
    background: 
        url('../../images/couples/kissingCouple.jpg') center center/cover no-repeat;
    background-blend-mode: lighten, normal;
}

/*  */
.contact-container {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Improved Contact Section Layout */
.contact-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.contact-icon {
    font-size: 2.2rem;
    color: #fd79a8;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    padding: 0.5rem 0.7rem;
    box-shadow: 0 2px 8px rgba(253, 121, 168, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-content {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}
.contact-form-block, .contact-info-block {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 1s ease;
    background: none;
}
.contact-form-block {
    align-items: center;
    margin-bottom: 5rem;
}
.contact-info-block {
    max-width: 320px;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255,255,255,0.93);
    border-radius: 20px;
    box-shadow: 0 2px 12px 0 rgba(253, 121, 168, 0.08);
    padding: 2rem 1.2rem 2.5rem 1.2rem;
}
.contact-divider {
    width: 2px;
    background: linear-gradient(180deg, #fd79a8 0%, #e84393 100%);
    border-radius: 2px;
    margin: 0 1.5rem;
    opacity: 0.15;
    min-height: 320px;
    align-self: stretch;
    display: block;
    box-shadow: 0 0 8px 0 #fdcbf1;
}
.contact-info {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(253, 121, 168, 0.07);
    font-size: 1rem;
    color: #8b1538;
    width: 100%;
}
.contact-socials {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.contact-social {
    color: #fd79a8;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(253, 121, 168, 0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.contact-social:hover {
    background: #fd79a8;
    color: #fff;
    transform: translateY(-2px) scale(1.08);
}
.contact-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8b1538;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(139, 21, 56, 0.10);
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #fd79a8 0%, #e84393 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
}
.contact-accent-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #fdcbf1 0%, #fd79a8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(253, 121, 168, 0.18);
    font-size: 2rem;
    color: #fff;
    animation: pulse 2.5s infinite;
    border: 2.5px solid #fdcbf1;
}

.contact-form {
    position: relative;
    background: rgba(255, 255, 255, 0.519);
    border-radius: 20px;
    box-shadow: 0 4px 32px 0 rgba(253, 121, 168, 0.10);
    padding: 2.2rem 1.7rem 2.7rem 1.7rem;
    border: 1.5px solid #fdcbf1;
    transition: box-shadow 0.3s, border 0.3s;
    z-index: 2;
}
.contact-form:hover {
    box-shadow: 0 8px 48px 0 rgba(253, 121, 168, 0.16);
    border: 1.5px solid #fd79a8;
}
.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.96);
    border: 1.5px solid #fdcbf1;
    border-radius: 14px;
    font-size: 1.08rem;
    color: #8b1538;
    margin-bottom: 1.1rem;
    padding: 1.15rem 1.3rem 1.15rem 1.3rem;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(253, 121, 168, 0.06);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fd79a8;
    background: #fff6fa;
    box-shadow: 0 0 0 3px #fdcbf1, 0 4px 24px rgba(253, 121, 168, 0.10);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #c08ca7;
    opacity: 1;
    font-size: 1.01rem;
    letter-spacing: 0.02em;
}
.contact-form input:disabled,
.contact-form textarea:disabled {
    background: #f7e9f1;
    color: #bdbdbd;
    border-color: #f3c6e0;
}
.contact-form .form-row {
    position: relative;
    margin-bottom: 0.5rem;
}
/* Floating label style (optional, for modern look) */
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: transparent;
}

.contact-header-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fd79a8 0%, #e84393 100%);
    border-radius: 2px;
    margin: 1.2rem auto 1.2rem auto;
    box-shadow: 0 2px 8px rgba(253, 121, 168, 0.10);
}
.contact-label {
    display: block;
    font-size: 1.01rem;
    font-weight: 600;
    color: #f9499b;
    margin-bottom: 0.3rem;
    margin-left: 0.1rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.contact-form input:focus + .contact-label,
.contact-form textarea:focus + .contact-label {
    color: #fd79a8;
}
.contact-form-note {
    margin-top: 3rem;
    color: #a15a7b;
    font-size: 0.98rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* New styles for modern contact form */
.form-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}
.form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #f9499b;
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
}
.form-desc {
    color: #f9499b;
    font-size: 1.01rem;
    margin-bottom: 0;
    font-weight: 500;
}
.form-row-duo {
    margin-bottom: 1.1rem;
}
.form-group {
    min-width: 0;
}
.input-icon-group {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fd79a8;
    font-size: 1.1rem;
    pointer-events: none;
    opacity: 0.85;
}
.contact-form input,
.contact-form textarea {
    padding-left: 2.5rem;
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.btn-contact{
    margin: 0 auto;
    background: linear-gradient(90deg, #fd79a8 0%, #e84393 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 1.15rem 1.3rem 1.15rem 1.3rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(253, 121, 168, 0.10);
}

/* Center the contact form button */
.contact-form-fullwidth .btn-contact {
    display: block;
    margin: 2em auto 0 auto;
}

/* Stats Link Styles */
.stats-link {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 25%, #ffb3b3 50%, #ff8e8e 75%, #ff6b6b 100%);
    background-size: 200% 200%;
    border: 2px solid #e74c3c;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
    animation: statsLinkPulse 2s ease-in-out infinite, alertGradient 3s ease-in-out infinite;
}

.stats-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.stats-link:hover::before {
    left: 100%;
}

.stats-link:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #ff6b6b 25%, #ff8e8e 50%, #ff6b6b 75%, #e74c3c 100%);
    background-size: 200% 200%;
    border-color: #c0392b;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    color: white;
    animation: alertGradient 1.5s ease-in-out infinite;
}

.stats-link i {
    font-size: 1.3rem;
    color: white;
    animation: iconBounce 1.5s ease-in-out infinite;
}

@keyframes statsLinkPulse {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(139, 21, 56, 0.1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(139, 21, 56, 0.2);
    }
}

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

@keyframes alertGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Up Arrow Button Styles */
.up-arrow-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b1538 0%, #c7365f 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0.8;
}

.up-arrow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
    opacity: 1;
    background: linear-gradient(135deg, #a01d4a 0%, #d84371 100%);
}

.up-arrow-btn:active {
    transform: translateY(-1px);
}

/* ============================================
   UNIFIED DONATION CONTAINER - CLEAN DESIGN
   ============================================ */

.unified-donation-container {
    background: linear-gradient(145deg, rgba(253, 240, 255, 0.8) 0%, rgba(248, 249, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 60px rgba(139, 21, 56, 0.12);
    border: 1px solid rgba(139, 21, 56, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.unified-donation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b1538 0%, #c7365f 100%);
    z-index: 1;
}

.unified-donation-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.unified-donation-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 80px rgba(139, 21, 56, 0.18);
}

/* Header Section */
.donation-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.header-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.icon-wrapper {
    display: inline-block;
    position: relative;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, 
        #ff1493 0%, 
        #ff69b4 20%, 
        #da70d6 40%, 
        #ff6347 60%, 
        #ff1493 80%, 
        #ff69b4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: white;
    box-shadow: 
        0 20px 60px rgba(255, 20, 147, 0.4),
        0 8px 25px rgba(255, 105, 180, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.3),
        0 0 0 12px rgba(255, 20, 147, 0.1),
        0 0 40px rgba(255, 20, 147, 0.3);
    animation: luxuryHeartbeat 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    background-size: 200% 200%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, 
        rgba(255, 20, 147, 0.2) 0%, 
        rgba(255, 105, 180, 0.15) 50%, 
        rgba(255, 20, 147, 0.2) 100%);
    border-radius: 50%;
    animation: luxuryOrbit 8s linear infinite;
    z-index: -1;
}

.icon-wrapper:hover {
    transform: scale(1.15) rotateY(10deg);
    box-shadow: 
        0 25px 80px rgba(255, 20, 147, 0.5),
        0 12px 35px rgba(255, 105, 180, 0.4),
        0 0 0 6px rgba(255, 255, 255, 0.4),
        0 0 0 16px rgba(255, 20, 147, 0.15),
        0 0 60px rgba(255, 20, 147, 0.4);
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #8b1538 0%, #c7365f 100%);
    border-radius: 50%;
    opacity: 0.2;
    animation: glow-pulse 3s infinite;
    z-index: -1;
}

.main-title {
    font-size: 3rem;
    font-weight: 900;
    color: #8b1538;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        #ff1493 0%, 
        #ff69b4 25%, 
        #da70d6 50%, 
        #ff6347 75%, 
        #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: luxuryTextShimmer 4s ease-in-out infinite;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(255, 20, 147, 0.1);
    position: relative;
    z-index: 3;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ff1493 20%, 
        #ff69b4 50%, 
        #ff1493 80%, 
        transparent 100%);
    border-radius: 2px;
    animation: luxuryUnderlineGlow 3s ease-in-out infinite alternate;
}

.main-subtitle {
    font-size: 1.35rem;
    color: #8b4b6b;
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.02em;
    line-height: 1.4;
    position: relative;
    z-index: 3;
}

.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 12px 35px rgba(255, 20, 147, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 -2px 12px rgba(255, 105, 180, 0.2) inset;
    position: relative;
    overflow: hidden;
    z-index: 3;
    transition: all 0.3s ease;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 20, 147, 0.1), 
        rgba(255, 105, 180, 0.08), 
        rgba(255, 20, 147, 0.1), 
        transparent);
    animation: luxuryShimmer 4s ease-in-out infinite;
}

.stats-bar:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 16px 45px rgba(255, 20, 147, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 -3px 15px rgba(255, 105, 180, 0.3) inset;
}

.stat-item {
    text-align: center;
    min-width: 140px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b1538 0%, #c7365f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b4c7a;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(139, 21, 56, 0.2), transparent);
}

/* Description */
.donation-content {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a4065;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

/* Action Button */
.action-section {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.donate-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(135deg, #8b1538 0%, #c7365f 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(139, 21, 56, 0.3);
    position: relative;
    overflow: hidden;
}

.donate-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.donate-button:hover::before {
    left: 100%;
}

.donate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(139, 21, 56, 0.4);
    background: linear-gradient(135deg, #a01d4a 0%, #d84371 100%);
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.button-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.donate-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Action Divider */
.action-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.action-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 20, 147, 0.3) 20%, 
        rgba(255, 105, 180, 0.4) 50%, 
        rgba(255, 20, 147, 0.3) 80%, 
        transparent 100%);
    z-index: 1;
}

.action-divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #8b4b6b;
    font-weight: 500;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 182, 193, 0.3);
    backdrop-filter: blur(10px);
}

/* Early Subscriber Button */
.subscriber-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(88, 28, 135, 0.95) 0%, 
        rgba(123, 31, 162, 0.9) 50%,
        rgba(142, 36, 170, 0.85) 100%);
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(186, 85, 211, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 
        0 8px 25px rgba(142, 36, 170, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(15px);
}

.subscriber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        rgba(186, 85, 211, 0.1),
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.6s;
}

.subscriber-button:hover::before {
    left: 100%;
}

.subscriber-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 45px rgba(142, 36, 170, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 25px rgba(186, 85, 211, 0.3);
    border-color: rgba(186, 85, 211, 0.5);
    background: linear-gradient(135deg, 
        rgba(98, 38, 145, 1) 0%, 
        rgba(133, 41, 172, 0.95) 50%,
        rgba(152, 46, 180, 0.9) 100%);
}

.button-icon {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 2px 8px rgba(142, 36, 170, 0.3);
}

.subscriber-button:hover .button-icon {
    transform: scale(1.2) rotate(15deg);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 12px rgba(186, 85, 211, 0.5);
}

/* Trust Section */
.trust-section {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #8b4b6b;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 240, 245, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(255, 182, 193, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 240, 245, 0.8);
    transform: translateY(-1px);
}

.trust-item i {
    color: #8b1538;
    font-size: 1rem;
}

.guarantee-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem;
    background: rgba(255, 240, 245, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 182, 193, 0.12);
    font-size: 0.9rem;
    color: #8b4b6b;
    text-align: center;
    backdrop-filter: blur(10px);
}

.guarantee-message i {
    color: #28a745;
    font-size: 1.1rem;
}

/* Testimonial */
.testimonial-section {
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 240, 245, 0.8);
    border: 1px solid rgba(255, 182, 193, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(199, 54, 95, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 54, 95, 0.12);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #8b1538;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #5a4065;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.9rem;
    color: #6b4c7a;
    font-weight: 600;
    font-style: normal;
}

/* Animations */
@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

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

/* Luxury Premium Animations */
@keyframes luxuryGradientFlow {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 50% 50%; }
    66% { background-position: 100% 50%; }
}

@keyframes luxuryAmbientGlow {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: rotate(90deg) scale(1.05);
        opacity: 0.2;
    }
    100% { 
        transform: rotate(180deg) scale(1.1);
        opacity: 0.3;
    }
}

@keyframes luxuryHeartbeat {
    0%, 100% { 
        transform: scale(1);
        background-position: 0% 50%;
    }
    25% { 
        transform: scale(1.08);
        background-position: 25% 50%;
    }
    50% { 
        transform: scale(1.05);
        background-position: 50% 50%;
    }
    75% { 
        transform: scale(1.03);
        background-position: 75% 50%;
    }
}

@keyframes luxuryOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes luxuryTextShimmer {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    25% { 
        background-position: 25% 50%;
        filter: brightness(1.1);
    }
    50% { 
        background-position: 50% 50%;
        filter: brightness(1.2);
    }
    75% { 
        background-position: 75% 50%;
        filter: brightness(1.1);
    }
}

@keyframes luxuryUnderlineGlow {
    0% { 
        opacity: 0.6;
        transform: translateX(-50%) scaleX(0.8);
    }
    100% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

@keyframes luxuryShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .unified-donation-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }
}















