/* Global Styles */
:root {
    --primary-color: #6366f1; /* Indigo */
    --secondary-color: #f59e0b; /* Amber */
    --accent-color: #ec4899; /* Pink */
    --text-color: #1f2937; /* Gray 800 */
    --light-bg: #ffffff; /* White */
    --card-bg: #f8fafc; /* Gray 50 */
    --border-color: #e2e8f0; /* Gray 200 */
    --soft-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-bg);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Brand Section */
.brand-section {
    margin-bottom: 3rem;
    text-align: center;
}

.brand-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.brand-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    box-shadow: var(--soft-shadow);
    border: none;
    transition: all 0.3s ease;
}

.coming-soon-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    margin-top: 3rem;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--soft-shadow);
}

.contact-info:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-info span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.contact-info-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.contact-info-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.contact-form-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.form-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form .form-control {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.contact-form .form-control:focus {
    background: var(--light-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    outline: none;
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: #64748b;
}

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

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--soft-shadow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.btn-submit i {
    margin-right: 0.5rem;
}

.success-message {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
}

.success-message h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-message p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-title {
        font-size: 3rem;
    }
    
    .brand-subtitle {
        font-size: 1.1rem;
    }
    
    .coming-soon-badge {
        padding: 0.8rem 2rem;
    }
    
    .badge-text {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .brand-title {
        font-size: 2.5rem;
    }
    
    .brand-subtitle {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .btn-submit {
        padding: 0.8rem 1.5rem;
    }
} 