/* Contact Page Styles - Warm & Personal */

/* Hero Section */
.contact-hero-new {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1e3a5f 100%);
    z-index: 0;
}

.contact-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(236, 72, 153, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
}

.contact-badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    color: #ec4899;
    margin-bottom: 25px;
}

.contact-hero-new h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 25px;
}

.contact-hero-new .gradient-text {
    background: linear-gradient(135deg, #fbbf24, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Personal Message Section */
.contact-personal {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1e3a5f 0%, #1a0a2e 100%);
}

.personal-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.personal-image {
    position: relative;
}

.personal-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 25px;
    z-index: -1;
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.personal-text h2 {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 25px;
}

.personal-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.personal-text strong {
    color: #fff;
}

.signature {
    margin-top: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.ana-name {
    color: #ec4899;
    font-style: normal;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #fbbf24;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px 18px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a0a2e;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

.btn-icon {
    font-size: 1.3rem;
}

.form-promise {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Quick Options Section */
.contact-options {
    padding: 100px 20px;
    background: linear-gradient(180deg, #2d1b4e 0%, #1a0a2e 100%);
}

.contact-options h2 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 50px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.1);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.option-card h3 {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.option-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.option-link {
    color: #ec4899;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Social Section */
.contact-social {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0a2e 0%, #1e3a5f 100%);
    text-align: center;
}

.contact-social h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.social-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.social-links-new {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    border-color: rgba(236, 72, 153, 0.4);
    transform: translateY(-3px);
}

.social-card img {
    width: 30px;
    height: 30px;
}

.social-card span {
    color: #fff;
    font-weight: 500;
}

/* FAQ Section */
.contact-faq {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1e3a5f 0%, #1a0a2e 100%);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 50px;
}

.faq-grid-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-contact {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item-contact:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-item-contact h3 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.faq-item-contact p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero-new h1 {
        font-size: 2.5rem;
    }
    
    .personal-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .personal-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px 25px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-new {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-grid-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-new {
        padding: 120px 15px 60px;
    }
    
    .contact-hero-new h1 {
        font-size: 2rem;
    }
    
    .form-wrapper {
        padding: 25px 20px;
    }
}
