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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

main {
    padding: 2rem 0;
}

.hero {
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.btn {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.seo-content {
    background: #f9f9f9;
    padding: 3rem 0;
    margin-top: 3rem;
}

.seo-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.seo-text h2 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.seo-text h3 {
    color: #c2185b;
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
}

.seo-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.seo-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.seo-text li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.seo-text strong {
    color: #e91e63;
    font-weight: 600;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: none;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.profile-form {
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #e91e63;
}

#authTabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

.tab-btn.active {
    background: #e91e63;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-btn {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.google-btn:hover {
    background: #f5f5f5;
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: #666;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.divider {
    background: white;
    padding: 0 15px;
    display: inline-block;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Floating label container */
.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.floating-label:last-child {
    margin-bottom: 0;
}

.floating-label input,
.floating-label select,
.floating-label textarea {
    padding: 20px 12px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
    background: white;
    transition: all 0.3s ease;
}

.floating-label label {
    position: absolute;
    left: 12px;
    top: 16px;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 4px;
    z-index: 1;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label input.has-value + label,
.floating-label select:focus + label,
.floating-label select:not([value=""]) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label,
.floating-label label.active {
    top: -8px;
    font-size: 12px;
    color: #e91e63;
    font-weight: 500;
}

/* Special handling for selects with values */
.floating-label select:not([value=""]):not(:focus) + label,
.floating-label select.has-value + label {
    top: -8px;
    font-size: 12px;
    color: #e91e63;
    font-weight: 500;
}

.floating-label input:focus,
.floating-label select:focus,
.floating-label textarea:focus {
    outline: none;
    border-color: #e91e63;
}

/* Field hint styling */
.field-hint {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Expectations field specific styling */
.expectations-field textarea {
    min-height: 100px;
    resize: vertical;
}

/* Fallback for non-floating inputs */
input, select, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}

button[type="submit"], 
#verifyOtp, 
#verifyRegOtp {
    padding: 14px 20px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

button[type="submit"]:hover, 
#verifyOtp:hover, 
#verifyRegOtp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

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

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.form-section {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.form-section > input:last-child,
.form-section > select:last-child,
.form-section > textarea:last-child,
.form-section > .checkbox-container:last-child {
    margin-bottom: 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-bottom: 0;
}

.checkbox-container label {
    margin: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.form-section h4 {
    color: #e91e63;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

#recaptcha-container {
    margin: 20px 0;
}

.activation-message {
    margin: 20px 0;
}

.message-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px dashed #e91e63;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.message-box span {
    flex: 1;
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    color: #e91e63;
}

.copy-btn {
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 16px;
}

.copy-btn:hover {
    background: #c2185b;
}

.contact-options {
    margin: 20px 0;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 15px 0;
}

.contact-btn {
    padding: 12px 20px;
    border: 2px solid #e91e63;
    border-radius: 25px;
    background: white;
    color: #e91e63;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #e91e63;
    color: white;
}

.contact-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.admin-contact {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.admin-contact p {
    margin: 5px 0;
}

#adminNumber {
    font-family: monospace;
    font-size: 18px;
    font-weight: bold;
    color: #e91e63;
}

/* Profile form page styles */
.profile-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 2rem auto;
    max-width: 800px;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-buttons .btn,
.form-buttons .btn-secondary {
    min-width: 150px;
    padding: 12px 24px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .profile-form-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .form-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-buttons .btn,
    .form-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}