:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #ff6090;
    --accent-color: #fce4ec;
    --dark-text: #2c3e50;
    --light-bg: #fdf5f7;
}

.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.company-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-name i {
    font-size: 1.3rem;
}

.address-block {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.address-block p {
    margin: 0;
    color: var(--dark-text);
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--accent-color);
}

.contact-item .icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item .icon-box i {
    color: white;
    font-size: 1.2rem;
}

.contact-item .details h6 {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-item .details p {
    margin: 0;
    color: var(--dark-text);
    font-weight: 600;
}

.contact-item .details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item .details a:hover {
    text-decoration: underline;
}

.support-hours {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
}

.support-hours h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.support-hours p {
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Form */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card .intro-text {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating>.form-control,
.form-floating>.form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1rem;
    height: auto;
    transition: all 0.3s ease;
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1);
}

.form-floating>label {
    padding: 1rem;
    color: #999;
}

.form-floating>textarea.form-control {
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    color: white;
}

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

.form-note i {
    color: var(--primary-color);
}

/* Section 4: Help Categories - Wedding Themed */
.help-categories {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff9fb 0%, #fff 50%, #fdf2f6 100%);
    position: relative;
    overflow: hidden;
}

/* Floating Hearts */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    bottom: -50px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    animation: floatUp 8s infinite ease-in-out;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Section Title with Wedding Rings */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.wedding-rings-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.ring {
    width: 50px;
    height: 50px;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    animation: ringShine 3s infinite;
}

.ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ffd700, #ffec8b);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px #ffd700;
}

.ring-left {
    margin-right: -15px;
    z-index: 2;
    background: linear-gradient(135deg, #ffd70020, transparent);
}

.ring-right {
    margin-left: -15px;
    z-index: 1;
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, transparent, #ffd70020);
}

@keyframes ringShine {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(233, 30, 99, 0.6);
    }
}

.section-title-wrapper h2 {
    color: var(--dark-text);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-title-wrapper p {
    color: #666;
    font-size: 1.05rem;
}

.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.decorative-line .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.decorative-line i {
    color: var(--primary-color);
    font-size: 0.8rem;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.2);
    }
}

/* New Help Cards */
.help-card-new {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.help-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.help-card-new:hover::before {
    opacity: 1;
}

.help-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.2);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.help-card-new:hover .card-glow {
    opacity: 1;
}

.icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-inner {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.35);
}

.icon-inner i {
    font-size: 1.8rem;
    color: white;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.help-card-new:hover .orbit-ring {
    opacity: 1;
}

.help-card-new:hover .icon-inner {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.45);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.help-card-new h5 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.help-card-new p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.card-arrow {
    margin-top: 15px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.card-arrow i {
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.help-card-new:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Wedding Illustration */
.wedding-illustration {
    text-align: center;
    margin-top: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.couple-image {
    width: 150px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(233, 30, 99, 0.2));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.sparkle {
    position: absolute;
    color: #ffd700;
    animation: sparkle 2s infinite;
}

.sparkle-1 {
    top: 10%;
    left: calc(50% - 100px);
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    left: calc(50% + 80px);
    animation-delay: 0.5s;
}

.sparkle-3 {
    top: 60%;
    left: calc(50% - 80px);
    animation-delay: 1s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Section 5: Legal Note */
.legal-section {
    padding: 40px 0;
    background: #f1f3f5;
}

.legal-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.legal-note p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

.legal-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Section 6: Final CTA */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-text) 0%, #1a252f 100%);
    color: white;
    text-align: center;
}

.final-cta h3 {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.cta-contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.email {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-btn.phone {
    background: white;
    color: var(--primary-color);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn.email:hover {
    color: white;
}

.cta-btn.phone:hover {
    color: var(--primary-dark);
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-info-card,
    .form-card {
        padding: 25px;
    }

    .cta-contact-options {
        flex-direction: column;
        align-items: center;
    }
}

/* Success Animation */
.success-checkmark {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-checkmark.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-checkmark .check-icon i {
    font-size: 2.5rem;
    color: white;
}

.success-checkmark h4 {
    color: var(--dark-text);
    margin-bottom: 10px;
}

.success-checkmark p {
    color: #666;
}