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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #025f5f 0%, #9aa57d 100%) !important;
    min-height: 100vh;
    color: #fff;
}

.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links li {
    position: relative;
}

.nav-btn {
    text-decoration: none;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.signup-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.signup-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    scroll-margin-top: 80px;
}

.content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.content p {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s backwards;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.welcome-section h1 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: #fdfdfd;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-section p {
    font-size: 0.95rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.25);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.services-section {
    margin-top: 2rem;
}

.services-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #ece6d3;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #5576ce 0%, #f5f257 100%);
    color: white;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 195, 66, 0.6);
}

.service-select {
    width: 100%;
    padding: 0.4rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 0.6rem;
}

.service-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.service-email {
    width: 100%;
    padding: 0.4rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.service-email:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.service-email::placeholder {
    color: #999;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 350px;
    margin: 0 auto;
}

.auth-form input {
    padding: 0.7rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.auth-form button {
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #5576ce 0%, #f5f257 100%);
    color: white;
    transition: all 0.3s ease;
}

.auth-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 195, 66, 0.6);
}

.message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-header {
    text-align: center;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

.modal-body {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0.4rem 0;
}

.modal-footer {
    text-align: center;
}

.login-now-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #5576ce 0%, #f5f257 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.login-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 195, 66, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 1rem;
        min-height: calc(100vh - 60px);
    }
    
    .content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .welcome-section {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-section h1 {
        font-size: 1.8rem;
    }
    
    .welcome-section p {
        font-size: 1rem;
    }
    
    .services-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .service-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .auth-form {
        max-width: 100%;
    }
    
    .auth-form input,
    .auth-form select,
    .auth-form button {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .login-now-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-content h1 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .account-details {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .account-details h3 {
        font-size: 1.2rem;
    }
    
    .detail-item {
        padding: 0.8rem;
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .detail-item span {
        text-align: left;
    }
    
    .history-list {
        max-width: 100%;
    }
    
    .history-item {
        padding: 1.5rem;
    }
    
    .profile-info,
    .info-card,
    .login-container {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .profile-info h3,
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .profile-info p,
    .info-card p {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .secondary-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .content h1 {
        font-size: 1.5rem;
    }
    
    .content p {
        font-size: 0.9rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .welcome-section p {
        font-size: 0.9rem;
    }
    
    .services-section h2 {
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .auth-form input,
    .auth-form select,
    .auth-form button {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
}

.profile-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.profile-info p {
    font-size: 1rem;
    margin: 0.8rem 0;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-info strong {
    color: #fbf493;
    margin-right: 1rem;
}

.dashboard-info {
    max-width: 600px;
    margin: 1.5rem auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: left;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.info-card p {
    font-size: 1rem;
    margin: 0.8rem 0;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-card strong {
    color: #f093fb;
    margin-right: 1rem;
}

.login-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.secondary-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s backwards;
    margin-bottom: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.2rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #5576ce 0%, #f5f257 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 195, 66, 0.6);
}

.hero-btn-secondary {
    background: rgba(96, 255, 207, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-content h1 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #f093fb;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.auth-form select {
    padding: 0.6rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: pointer;
}

.auth-form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.auth-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.account-details {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 600px;
    margin: 1.5rem auto;
    text-align: left;
}

.account-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #f093fb;
}

.detail-item {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin: 0.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.detail-item strong {
    color: #f093fb;
    margin-right: 1rem;
}

.detail-item span {
    word-break: break-all;
    text-align: right;
}

.history-list {
    max-width: 800px;
    margin: 0.8rem auto;
}

.history-table {
    width: 100%;
    max-width: 800px;
    margin: 0.6rem auto;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.history-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.history-table th {
    padding: 0.6rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.history-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.history-table tbody tr:nth-child(even) {
    background: rgba(102, 126, 234, 0.05);
}

.history-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.1);
}

.history-table td {
    padding: 0.5rem;
    font-size: 0.8rem;
    color: #333;
}

.history-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0.8rem;
}

.status-pending {
    color: #fbbf24;
    font-weight: 600;
    background: rgba(251, 191, 36, 0.15);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
}

.status-approved {
    color: #4ade80;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.15);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
}

.status-cancelled {
    color: #f87171;
    font-weight: 600;
    background: rgba(248, 113, 113, 0.15);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
}

.status-rejected {
    color: #f87171;
    font-weight: 600;
    background: rgba(248, 113, 113, 0.15);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
}

.status-accepted {
    color: #4ade80;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.15);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
}

.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    width: 100%;
    padding-right: 3.5rem;
}

.toggle-password {
    position: absolute;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.toggle-password:hover {
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.toggle-password:active {
    transform: scale(0.95);
}

.toggle-password span {
    pointer-events: none;
    font-size: 1.2rem;
    line-height: 1;
}

.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
