/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, 'Segoe UI', Tahoma, Geneva, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%),
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #F4E87C;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #F4E87C;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(244, 232, 124, 0.3);
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 2rem;
}

.nav ul li a {
    text-decoration: none;
    color: #F4E87C;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav ul li a:hover {
    color: #000;
    background: #F4E87C;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
main {
    padding-top: 80px;
    min-height: calc(100vh - 160px);
}

.hero {
    text-align: center;
    padding: 8rem 0 6rem;
    color: #F4E87C;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 30%, rgba(42, 42, 42, 0.8) 70%, rgba(0, 0, 0, 0.8) 100%),
                url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(244, 232, 124, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(244, 232, 124, 0.04) 0%, transparent 50%),
                linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-family: 'Impact', Verdana, sans-serif;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.hero .btn {
    position: relative;
    z-index: 3;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: Verdana, sans-serif;
    border: 2px solid #2563eb;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
}

/* Forms */
.form-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 500px;
    border: 1px solid #F4E87C;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #308010;
    font-family: Verdana, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #0a0a0a;
    border-radius: 8px;
    font-size: 1rem;
    background: #f9f8f8;
    color: #080808;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F0E68C;
    box-shadow: 0 0 0 3px rgba(244, 232, 124, 0.15);
    background: #404040;
}

.password-container {
    display: flex;
    align-items: center;
    position: relative;
}

.password-container input {
    flex: 1;
    padding-right: 50px; /* Space for the button */
}

.password-toggle-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    width: 36px;
    height: 36px;
    z-index: 1;
}

.password-toggle-btn:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.eye-icon {
    font-size: 18px;
    line-height: 1;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
                url('https://images.unsplash.com/photo-1611224923853-80b023f02d71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(244, 232, 124, 0.02) 10px,
        rgba(244, 232, 124, 0.02) 20px
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(244, 232, 124, 0.08) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-radius: 20px;
    border: 2px solid #F4E87C;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(244, 232, 124, 0.2);
    border-color: #F0E68C;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #F4E87C;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(244, 232, 124, 0.6);
    font-family: 'Impact', Verdana, sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #F4E87C;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid #F4E87C;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-left: 2rem;
}

.footer-links a {
    color: #F4E87C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F0E68C;
    text-shadow: 0 0 5px rgba(244, 232, 124, 0.4);
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h3 {
    margin-bottom: 1rem;
    color: #F4E87C;
    font-family: Verdana, sans-serif;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services */
.services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.services h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #F4E87C;
    font-family: Verdana, sans-serif;
    position: relative;
    z-index: 2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.service-buttons {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #DAA520;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.2);
}

.service h4 {
    margin-bottom: 1rem;
    color: #F4E87C;
    font-family: Verdana, sans-serif;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #F4E87C;
    font-family: Verdana, sans-serif;
    position: relative;
    z-index: 2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(244, 232, 124, 0.9) 0%, rgba(240, 230, 140, 0.9) 50%, rgba(244, 232, 124, 0.9) 100%),
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.testimonial {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #DAA520;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.testimonial cite {
    font-weight: bold;
    color: #F4E87C;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F4E87C 0%, #F0E68C 50%, #F4E87C 100%);
    color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
}

.cta h3 {
    margin-bottom: 1rem;
    font-family: 'Impact', Verdana, sans-serif;
    position: relative;
    z-index: 2;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.cta .btn {
    position: relative;
    z-index: 3;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dashboard-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
    background: radial-gradient(circle at 50% 50%, rgba(206, 141, 141, 0.1) 0%, transparent 70%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #211e1e;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #11762a;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: #7b1111;
}

/* About Page */
.about-content {
    padding: 4rem 0;
    background: white;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h3 {
    margin-bottom: 1rem;
    color: #667eea;
}

.about-section ul {
    padding-left: 2rem;
}

.about-section li {
    margin-bottom: 0.5rem;
}

/* Content Pages */
.content-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #F4E87C;
}

.content-wrapper h3 {
    color: #F4E87C;
    margin-bottom: 1.5rem;
    font-family: Verdana, sans-serif;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.content-wrapper ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.8rem;
    color: #e0e0e0;
}

/* Modern Features Section */
.features-modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%),
                url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.features-modern h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #F4E87C;
    font-size: 2.5rem;
    font-family: Verdana, sans-serif;
    position: relative;
    z-index: 2;
}

.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-modern {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #F4E87C;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 232, 124, 0.1), transparent);
    transition: left 0.5s;
}

.feature-modern:hover::before {
    left: 100%;
}

.feature-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 232, 124, 0.2);
    border-color: #F0E68C;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-modern h4 {
    color: #F4E87C;
    margin-bottom: 1rem;
    font-family: Verdana, sans-serif;
    font-size: 1.3rem;
}

.feature-modern p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.how-it-works h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #F4E87C;
    font-size: 2.5rem;
    font-family: Verdana, sans-serif;
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Services */
.services {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
                url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%),
                url('https://images.unsplash.com/photo-1551836022-deb4988cc6c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.step {
    background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #F4E87C;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid #F4E87C;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F4E87C, #F0E68C);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    font-family: 'Impact', sans-serif;
}

.step h4 {
    color: #F4E87C;
    margin-bottom: 1rem;
    font-family: Verdana, sans-serif;
}

.step p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        border-top: 1px solid #DAA520;
    }

    .nav ul.active {
        display: flex;
    }

    .nav ul li {
        margin: 0;
        text-align: center;
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 1rem;
    }

    .footer-links li {
        margin: 0 1rem;
    }

    .about-preview .container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .features-modern-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step::after {
        display: none;
    }

    .content-wrapper {
        padding: 2rem;
    }
}