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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    min-height: 100vh;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 16px 32px rgba(0, 0, 0, 0.08),
        0 32px 64px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

/* Header */
header {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}


.app-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.facebook-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #1877f2;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: #0d5dbf;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.5);
}

.facebook-link i {
    font-size: 1.4rem;
}

.appstore-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.appstore-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.appstore-badge {
    width: 135px;
    height: auto;
}

.playstore-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.playstore-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.playstore-badge {
    width: 135px;
    height: auto;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #0ea5e9;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
    display: block;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Main Content */
main {
    padding: 40px;
}

.welcome-box {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-box h2 {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.welcome-box p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: #f0f9ff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.benefits-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.benefits-list li:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
}

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

.form-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

/* Form Fields */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.field-group {
    margin-bottom: 20px;
}

.field-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.field-group input,
.field-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

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

/* Photos Upload */
.photos-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.photos-label.error {
    color: #dc2626;
}

.photos-upload {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.photos-upload.error .photo-label {
    border-color: #ef4444;
    background: #fef2f2;
    animation: shake 0.5s;
}

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

.photo-upload-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.photo-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-height: 150px;
}

.photo-label:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.photo-label.has-image {
    display: none;
}

.photo-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.photo-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.photo-input {
    display: none;
}

.file-name {
    font-size: 0.85rem;
    color: #0ea5e9;
    text-align: center;
    min-height: 20px;
    word-break: break-word;
    display: none;
}

/* Image Preview Styles */
.image-preview {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: none;
    width: 100%;
}

.image-preview.active {
    display: block;
}

.image-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
}

.image-preview .remove-image {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.image-preview .remove-image:hover {
    background: rgba(220, 38, 38, 1);
}

.image-preview .file-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px;
    font-size: 0.85rem;
    text-align: center;
    word-break: break-word;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.4);
}

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

/* Result Box */
.result-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.result-box.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.result-box.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Direct Contact */
.direct-contact {
    text-align: center;
    padding: 25px;
    background: #f9fafb;
    border-radius: 10px;
}

.direct-contact p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.contact-email {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email:hover {
    color: #1e293b;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #f3f4f6;
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .input-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
    }

    .social-icons {
        position: static;
        margin-top: 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 20px;
    }

    .photos-upload {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 20px;
    }
}

