/* Contact Form Section Clean Styles */
/* Minimal, clean styles to support friendly GSAP animations */

/* Base styles for contact form section */
.contact-form {
    position: relative;
    will-change: transform, opacity;
}

/* Clean typography */
.contact-form .text-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-form .text-center p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Clean card styling */
.contact-form .grid > div {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: box-shadow 0.3s ease;
}

.contact-form .grid > div:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Phone section clean styling */
.contact-form .bg-red-600.text-white {
    background: #dc2626;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-form .bg-red-600.text-white:hover {
    background: #b91c1c;
}

.contact-form .bg-red-600.text-white .text-4xl {
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* SNS buttons clean styling */
.contact-form .bg-green-500,
.contact-form .bg-blue-500 {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form .bg-green-500 {
    background: #10b981;
}

.contact-form .bg-green-500:hover {
    background: #059669;
}

.contact-form .bg-blue-500 {
    background: #3b82f6;
}

.contact-form .bg-blue-500:hover {
    background: #2563eb;
}

/* Form inputs clean styling */
.contact-form input,
.contact-form textarea {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #dc2626;
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Submit button clean styling */
.contact-form button[type="submit"] {
    background: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button[type="submit"]:hover {
    background: #b91c1c;
}

/* Icons clean styling */
.contact-form .lucide {
    color: #dc2626;
    transition: all 0.3s ease;
}

.contact-form .lucide:hover {
    color: #b91c1c;
}

/* Section headings */
.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.contact-form h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
}

/* Clean spacing */
.contact-form .space-y-4 > * + * {
    margin-top: 1rem;
}

.contact-form .space-y-6 > * + * {
    margin-top: 1.5rem;
}

.contact-form .space-y-8 > * + * {
    margin-top: 2rem;
}

/* Responsive design */
@media (max-width: 1024px) {
    .contact-form .text-center h2 {
        font-size: 2rem;
    }
    
    .contact-form .text-center p {
        font-size: 1.125rem;
    }
    
    .contact-form .grid > div {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form .text-center h2 {
        font-size: 1.75rem;
    }
    
    .contact-form .text-center p {
        font-size: 1rem;
    }
    
    .contact-form .grid > div {
        padding: 1.25rem;
    }
    
    .contact-form h3 {
        font-size: 1.25rem;
    }
    
    .contact-form h4 {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .contact-form .text-center h2 {
        font-size: 1.5rem;
    }
    
    .contact-form .text-center p {
        font-size: 0.875rem;
    }
    
    .contact-form .grid > div {
        padding: 1rem;
    }
    
    .contact-form h3 {
        font-size: 1.125rem;
    }
    
    .contact-form .bg-red-600.text-white {
        padding: 1.5rem;
    }
    
    .contact-form .bg-red-600.text-white .text-4xl {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .contact-form *,
    .contact-form *::before,
    .contact-form *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-form .bg-red-600.text-white {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #ffffff;
    }
    
    .contact-form .bg-green-500 {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #ffffff;
    }
    
    .contact-form .bg-blue-500 {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #ffffff;
    }
    
    .contact-form button[type="submit"] {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #ffffff;
    }
    
    .contact-form input,
    .contact-form textarea {
        border: 2px solid #000000 !important;
        background: #ffffff !important;
        color: #000000 !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .contact-form {
        background: #1f2937;
    }
    
    .contact-form .text-center h2 {
        color: #ffffff;
    }
    
    .contact-form .text-center p {
        color: #e5e7eb;
    }
    
    .contact-form .grid > div {
        background: #374151;
        border: 1px solid #4b5563;
    }
    
    .contact-form h3,
    .contact-form h4 {
        color: #ef4444;
    }
    
    .contact-form input,
    .contact-form textarea {
        background: #374151;
        border-color: #4b5563;
        color: #ffffff;
    }
    
    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #9ca3af;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #ef4444;
        background: #4b5563;
    }
}

/* Print styles */
@media print {
    .contact-form {
        background: #ffffff !important;
    }
    
    .contact-form .bg-red-600.text-white {
        background: #dc2626 !important;
        color: #ffffff !important;
    }
    
    .contact-form .bg-green-500 {
        background: #10b981 !important;
        color: #ffffff !important;
    }
    
    .contact-form .bg-blue-500 {
        background: #3b82f6 !important;
        color: #ffffff !important;
    }
    
    .contact-form button[type="submit"] {
        background: #dc2626 !important;
        color: #ffffff !important;
    }
}

/* Focus styles for accessibility */
.contact-form .bg-red-600.text-white:focus,
.contact-form .bg-green-500:focus,
.contact-form .bg-blue-500:focus,
.contact-form button[type="submit"]:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Clean loading state */
.contact-form.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Smooth transitions */
.contact-form {
    transition: opacity 0.3s ease;
}

/* Enhanced readability */
.contact-form .font-bold {
    font-weight: 600;
    color: #dc2626;
}

.contact-form .text-red-600 {
    color: #dc2626;
}

.contact-form .text-red-100 {
    color: #fecaca;
}

/* Clean grid layout */
.contact-form .grid {
    display: grid;
    gap: 3rem;
}

.contact-form .grid.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
    .contact-form .grid.lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Clean flexbox layouts */
.contact-form .flex {
    display: flex;
}

.contact-form .flex.items-center {
    align-items: center;
}

.contact-form .flex.justify-center {
    justify-content: center;
}

.contact-form .flex.flex-col {
    flex-direction: column;
}

@media (min-width: 640px) {
    .contact-form .flex.sm\:flex-row {
        flex-direction: row;
    }
}

/* Clean spacing utilities */
.contact-form .mb-2 {
    margin-bottom: 0.5rem;
}

.contact-form .mb-3 {
    margin-bottom: 0.75rem;
}

.contact-form .mb-4 {
    margin-bottom: 1rem;
}

.contact-form .mb-6 {
    margin-bottom: 1.5rem;
}

.contact-form .mb-8 {
    margin-bottom: 2rem;
}

.contact-form .mb-16 {
    margin-bottom: 4rem;
}

.contact-form .mr-2 {
    margin-right: 0.5rem;
}

.contact-form .gap-4 {
    gap: 1rem;
}

.contact-form .gap-12 {
    gap: 3rem;
}

/* Clean padding utilities */
.contact-form .p-6 {
    padding: 1.5rem;
}

.contact-form .p-8 {
    padding: 2rem;
}

.contact-form .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.contact-form .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Clean text utilities */
.contact-form .text-center {
    text-align: center;
}

.contact-form .text-lg {
    font-size: 1.125rem;
}

.contact-form .text-xl {
    font-size: 1.25rem;
}

.contact-form .text-2xl {
    font-size: 1.5rem;
}

.contact-form .text-4xl {
    font-size: 2.25rem;
}

.contact-form .font-bold {
    font-weight: 700;
}

.contact-form .max-w-2xl {
    max-width: 42rem;
}

.contact-form .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Clean shadow utilities */
.contact-form .shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-form .rounded-lg {
    border-radius: 0.5rem;
}

.contact-form .w-full {
    width: 100%;
}

.contact-form .w-5 {
    width: 1.25rem;
}

.contact-form .h-5 {
    height: 1.25rem;
}

/* Clean container */
.contact-form .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .contact-form .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .contact-form .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .contact-form .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .contact-form .container {
        max-width: 1280px;
    }
} 