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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5F5F5;
}

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

/* Header */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    color: #FF6B35;
    font-size: 28px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #FF6B35;
}

.btn-primary {
    background-color: #FF6B35;
    color: #FFFFFF !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #E55A25;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    padding: 80px 20px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 30px;
}

.btn-large {
    display: inline-block;
    background-color: #FFFFFF;
    color: #FF6B35;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-subtext {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Stats Card */
.stats-card {
    background-color: #FFFFFF;
    color: #333;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.stats-card h3 {
    color: #FF6B35;
    font-size: 24px;
    margin-bottom: 10px;
}

.stats-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #F5F5F5;
    border-radius: 8px;
}

.comparison-item.highlight {
    background-color: #E8F5E9;
    border: 2px solid #4CAF50;
}

.comparison-item .label {
    font-weight: 600;
    font-size: 16px;
}

.comparison-item .amount {
    font-size: 24px;
    font-weight: bold;
    color: #FF6B35;
}

.comparison-item.highlight .amount {
    color: #4CAF50;
}

/* Problem Section */
.problem {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.problem h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    text-align: center;
    padding: 30px;
    background-color: #FFF5F0;
    border-radius: 12px;
    border: 2px solid #FFE0D0;
}

.problem-card .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FF6B35;
}

.problem-card p {
    color: #666;
    font-size: 16px;
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background-color: #F5F5F5;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #FF6B35;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    font-size: 15px;
}

/* Benefits */
.benefits {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    background-color: #F5F5F5;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.benefit-card .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 15px;
}

/* Pricing */
.pricing {
    padding: 80px 20px;
    background-color: #F5F5F5;
}

.pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 40px;
    text-align: center;
}

.price-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 24px;
    font-weight: bold;
    color: #FF6B35;
}

.price .amount {
    font-size: 64px;
    font-weight: bold;
    color: #FF6B35;
}

.price .period {
    font-size: 20px;
    color: #666;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 16px;
    color: #333;
}

.features li:last-child {
    border-bottom: none;
}

.trial-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #FF6B35;
}

.footer-section p {
    margin-bottom: 10px;
    color: #CCC;
}

.footer-section a {
    color: #CCC;
    text-decoration: none;
}

.footer-section a:hover {
    color: #FF6B35;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .problem-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    nav {
        flex-direction: column;
        gap: 10px;
    }
}
/* Registration Section */
.registration-section {
    padding: 60px 20px;
    background-color: #F5F5F5;
    min-height: calc(100vh - 80px);
}

.registration-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 40px;
}

.registration-header {
    margin-bottom: 40px;
}

.registration-header h1 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E0E0E0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
}

.progress-step.active .step-circle {
    background-color: #FF6B35;
    color: #FFFFFF;
}

.progress-step.completed .step-circle {
    background-color: #4CAF50;
    color: #FFFFFF;
}

.progress-step span {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.progress-step.active span {
    color: #FF6B35;
    font-weight: 600;
}

.progress-line {
    width: 100px;
    height: 3px;
    background-color: #E0E0E0;
    margin: 0 20px;
}

/* Form Styles */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    padding: 25px;
    background-color: #F9F9F9;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6B35;
}

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

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

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

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

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.password-hint {
    display: block;
    margin-top: -10px;
    font-size: 13px;
    color: #666;
}

/* Checkbox Groups */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.checkbox-item label {
    margin: 0;
    font-weight: normal;
}

/* Operating Hours */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.day-hours {
    display: grid;
    grid-template-columns: 120px 1fr 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 6px;
}

.day-label {
    font-weight: 600;
    color: #333;
}

.day-hours input[type="time"] {
    padding: 8px;
}

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

.closed-label {
    font-size: 14px;
    color: #666;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #E0E0E0;
}

.btn-secondary {
    background-color: #E0E0E0;
    color: #333;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #D0D0D0;
}

.form-actions .btn-large {
    margin: 0;
}

/* Error/Success Messages */
.error-message {
    display: none;
    background-color: #FFEBEE;
    color: #C62828;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #C62828;
    margin-top: 20px;
}

.error-message.show {
    display: block;
}

.success-message {
    display: none;
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #4CAF50;
    margin-top: 20px;
}

.success-message.show {
    display: block;
}

/* Loading State */
.btn-large:disabled {
    background-color: #CCC;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-large.loading::after {
    content: "...";
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* Responsive */
@media (max-width: 768px) {
    .registration-container {
        padding: 20px;
    }
    
    .form-row,
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .day-hours {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .progress-bar {
        font-size: 12px;
    }
    
    .progress-line {
        width: 50px;
        margin: 0 10px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-actions .btn-large,
    .form-actions .btn-secondary {
        width: 100%;
    }
}

/* Dashboard Section */
.dashboard-section {
    padding: 40px 20px;
    background-color: #F5F5F5;
    min-height: calc(100vh - 80px);
}

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

.welcome-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.welcome-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.welcome-banner p {
    font-size: 18px;
    opacity: 0.9;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dashboard-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dashboard-card.full-width {
    grid-column: 1 / -1;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.dashboard-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

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

.stat-label {
    color: #666;
    font-size: 14px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #FF6B35;
}

.stat-active {
    color: #4CAF50;
    font-size: 16px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    background-color: #F5F5F5;
    border: 2px solid #E0E0E0;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.action-btn:hover {
    background-color: #FF6B35;
    color: #FFFFFF;
    border-color: #FF6B35;
}

.steps-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: #F9F9F9;
    border-radius: 8px;
}

.checklist-item .check {
    font-size: 24px;
    color: #CCC;
    min-width: 30px;
}

.checklist-item.completed .check {
    color: #4CAF50;
}

.checklist-item span:last-child {
    color: #333;
    line-height: 1.5;
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    margin: 8px 0;
    color: #666;
}

.notice-card {
    background-color: #E8F5E9;
    border-left: 4px solid #4CAF50;
    padding: 20px 30px;
    border-radius: 8px;
}

.notice-card h3 {
    color: #2E7D32;
    margin-bottom: 10px;
}

.notice-card p {
    color: #333;
    margin: 8px 0;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   STYLISH LOGIN PAGE 
   ============================================ */

/* Login Page Background with Gradient */
.register-section {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 60px 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* Login Container - Card Style */
.register-section .register-container {
    max-width: 450px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 50px 40px;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Login Header */
.register-section .register-header {
    margin-bottom: 35px;
    text-align: center;
}

.register-section .register-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.register-section .register-header p {
    color: #666;
    font-size: 16px;
}

/* Form Styling */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register-form .form-group {
    margin-bottom: 5px;
}

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

.register-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #F9F9F9;
}

.register-form .form-group input:focus {
    outline: none;
    border-color: #FF6B35;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.register-form .form-group input::placeholder {
    color: #999;
}

/* Submit Button - More Stylish */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-top: 10px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-submit:disabled {
    background: #CCC;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

/* Form Footer */
.form-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.form-footer p {
    margin: 8px 0;
}

.form-footer a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.form-footer a:hover {
    color: #E55A25;
    text-decoration: underline;
}

/* Error and Success Messages - Stylish */
.error-message {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #C62828;
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 4px solid #C62828;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    animation: shake 0.5s;
}

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

.success-message {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.5s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sign In Button in Navigation - Stylish */
nav .btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav .btn-secondary:hover {
    background-color: #FF6B35;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-section {
        padding: 40px 15px;
    }
    
    .register-section .register-container {
        padding: 35px 25px;
    }
    
    .register-section .register-header h1 {
        font-size: 26px;
    }
}

