/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2c5aa0;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c5aa0;
}

/* Language Switcher Styles */
.language-switcher {
    margin-left: 15px;
}

.language-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.language-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white !important;
}

.language-link i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image i {
    font-size: 8rem;
    opacity: 0.8;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: #2c5aa0;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.business-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.business-item i {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.business-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.business-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Values Section */
.values {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.value-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Under Construction */
.under-construction {
    padding: 100px 0;
    text-align: center;
}

.construction-content {
    max-width: 800px;
    margin: 0 auto;
}

.construction-icon i {
    font-size: 5rem;
    color: #2c5aa0;
    margin-bottom: 30px;
}

.construction-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.construction-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

.construction-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #2c5aa0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Page */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #333;
}

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

.contact-text a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

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

.submit-button {
    background: #2c5aa0;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    text-align: center;
}

.map-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 80px 40px;
    color: white;
}

.map-content i {
    font-size: 4rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.map-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.map-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #2c5aa0;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.footer-section i {
    color: #2c5aa0;
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }

    .language-link {
        display: block;
        text-align: center;
        padding: 10px 20px;
        border-radius: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image i {
        font-size: 5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .business-areas {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .construction-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .map-placeholder {
        padding: 60px 20px;
    }
    
    .construction-features {
        grid-template-columns: 1fr;
    }
} 

/* Apps Section Styles */
.apps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.apps-grid {
    display: grid;
    gap: 40px;
}

.app-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.app-icon {
    text-align: center;
    margin-bottom: 30px;
}

.app-icon i {
    font-size: 4rem;
    color: #2c5aa0;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.app-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.feature:hover {
    background: #e9ecef;
}

.feature i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-right: 15px;
    min-width: 30px;
}

.feature span {
    font-weight: 500;
    color: #333;
}

.privacy-policy {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #2c5aa0;
}

.privacy-policy h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.privacy-policy h3 i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.policy-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid #667eea;
}

.policy-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.policy-item h4 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.policy-item ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-item li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-item strong {
    color: #333;
    font-weight: 600;
}

/* Delete Account Link in Privacy Policy */
.delete-account-link {
    display: inline-block;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white !important;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(244, 67, 54, 0.3);
    margin: 10px 0;
}

.delete-account-link:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
    color: white !important;
}

.delete-account-link i {
    margin-right: 8px;
}

/* Warning text styling for delete account section */
.policy-item p strong {
    color: #d32f2f;
}

/* Apps List Styles */
.apps-list {
    padding: 80px 0;
    background: #f8f9fa;
}

.app-list-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.app-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.app-list-card.coming-soon {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #ced4da;
    opacity: 0.8;
}

.app-list-card .app-icon {
    text-align: left;
    margin-bottom: 20px;
    display: inline-block;
}

.app-list-card .app-icon i {
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-list-card.coming-soon .app-icon i {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.app-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.app-content .app-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.app-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    color: #495057;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.feature-tag i {
    margin-right: 8px;
    color: #2c5aa0;
    font-size: 0.85rem;
}

.app-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-link-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(44, 90, 160, 0.3);
}

.app-link-button:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f1a2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.4);
    color: white;
}

.app-link-button i {
    margin-right: 8px;
}

.coming-soon-text {
    display: inline-flex;
    align-items: center;
    color: #6c757d;
    font-weight: 500;
    font-size: 1rem;
    font-style: italic;
}

.coming-soon-text i {
    margin-right: 8px;
    color: #6c757d;
}

/* Responsive adjustments for apps */
@media (max-width: 768px) {
    .app-card {
        padding: 30px 20px;
    }
    
    .app-icon i {
        font-size: 3rem;
        width: 100px;
        height: 100px;
    }
    
    .app-info h2 {
        font-size: 2rem;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .privacy-policy {
        padding: 20px 15px;
    }
    
    .policy-item {
        padding: 15px;
    }

    /* Apps List responsive styles */
    .app-list-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }
    
    .app-list-card .app-icon i {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .app-content h3 {
        font-size: 1.6rem;
    }
    
    .app-features-list {
        gap: 8px;
    }
    
    .feature-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .app-description {
        font-size: 1.1rem;
    }
    
    .feature {
        padding: 12px;
    }
    
    .feature i {
        font-size: 1.3rem;
        margin-right: 12px;
    }
    
    .privacy-policy h3 {
        font-size: 1.5rem;
    }
    
    .policy-item h4 {
        font-size: 1.2rem;
    }

    /* Apps List small screen responsive styles */
    .app-list-card {
        padding: 20px 15px;
    }
    
    .app-list-card .app-icon i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .app-content h3 {
        font-size: 1.4rem;
    }
    
    .app-content .app-description {
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .app-link-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Delete Account Page Styles */
.delete-account-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.delete-account-container {
    max-width: 800px;
    margin: 0 auto;
}

/* User Status */
.user-status {
    margin-bottom: 30px;
}

.status-card {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-card i {
    font-size: 2.5rem;
    color: #2196f3;
}

.status-info {
    flex: 1;
}

.status-info h3 {
    margin: 0 0 5px 0;
    color: #1976d2;
    font-size: 1.1rem;
}

.status-info p {
    margin: 0;
    color: #1565c0;
    font-weight: 600;
}

/* Logout Button */
.logout-btn {
    background: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.logout-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

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

.logout-btn i {
    font-size: 0.9rem;
}

/* Auth Form */
.auth-form {
    margin-bottom: 30px;
}

.form-card, .warning-card, .confirmation-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-card h2 {
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Warning Card */
.warning-card {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 3px solid #ff9800;
    text-align: center;
}

.warning-card i {
    font-size: 3rem;
    color: #ff5722;
    margin-bottom: 20px;
}

.warning-card h2 {
    color: #d84315;
    margin-bottom: 25px;
    justify-content: center;
}

.warning-content ul {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    list-style: none;
    padding: 0;
}

.warning-content li {
    padding: 10px 0;
    color: #bf360c;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-content li i {
    color: #ff5722;
    width: 20px;
}

.final-warning {
    background: #ffebee;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #f44336;
    margin-top: 25px;
    color: #c62828;
    font-weight: 600;
}

/* Confirmation Card */
.confirmation-card h3 {
    color: #2c5aa0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

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

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #2c5aa0;
}

/* Checkbox Group */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkmark {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Buttons */
.auth-button, .delete-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-button {
    background: #2c5aa0;
    color: white;
}

.auth-button:hover {
    background: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.delete-button {
    background: #f44336;
    color: white;
    margin-top: 20px;
}

.delete-button:hover:not(:disabled) {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.delete-button:disabled {
    background: #bdbdbd;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Error Messages */
.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 10px;
    border-left: 5px solid #f44336;
    margin-top: 15px;
    font-weight: 500;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.loading-content h3 {
    color: #333;
    margin: 20px 0 15px 0;
}

.loading-content p {
    color: #666;
    margin: 0;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Account Deleted Success Page */
.success-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    text-align: center;
    min-height: 60vh;
}

.success-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 30px;
}

.success-card h1 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.success-card p {
    color: #388e3c;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.home-button {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-button:hover {
    background: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Responsive Design for Delete Account Page */
@media (max-width: 768px) {
    .delete-account-container {
        padding: 0 15px;
    }
    
    .form-card, .warning-card, .confirmation-card {
        padding: 30px 20px;
    }
    
    .warning-card h2 {
        font-size: 1.5rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
    
    .loading-content {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .success-card {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .success-card h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .status-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .logout-btn {
        width: 100%;
        justify-content: center;
    }
    
    .warning-card i {
        font-size: 2.5rem;
    }
    
    .form-group input[type="email"],
    .form-group input[type="password"] {
        font-size: 16px; /* Prevents zoom on iOS */
    }
} 