/* ==========================================
   MODERN MONEY MANAGEMENT WEBSITE
   Unique Color Palette & CSS Animations
   Mobile-First Responsive Design
   ========================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1C1F26;
    color: #E5E7EB;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #C6FF00;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #00E5FF;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

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

/* === HEADER & NAVIGATION === */
header {
    background: linear-gradient(135deg, #1C1F26 0%, #252A35 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid #C6FF00;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #C6FF00;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(198, 255, 0, 0.4);
    transition: all 0.3s ease;
}

.logo:hover {
    color: #00E5FF;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    transform: scale(1.05);
}

/* === MOBILE MENU TOGGLE === */
.mobile-menu-toggle {
    display: none;
    background: #C6FF00;
    color: #1C1F26;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #00E5FF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

/* === NAVIGATION === */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #E5E7EB;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C6FF00, #00E5FF);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #C6FF00;
    background: rgba(198, 255, 0, 0.1);
}

nav a:hover::after {
    width: 80%;
}

/* === HERO SECTION === */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(28, 31, 38, 0.9), rgba(37, 42, 53, 0.85)), 
                url('./img/1G3KOX.jpg') center/cover no-repeat;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(198, 255, 0, 0.1), transparent 70%);
    animation: pulse 8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #C6FF00;
    text-shadow: 0 0 30px rgba(198, 255, 0, 0.5);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    color: #E5E7EB;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #C6FF00, #A8E600);
    color: #1C1F26;
    box-shadow: 0 8px 25px rgba(198, 255, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 255, 0, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #00E5FF, #00B8D4);
    color: #1C1F26;
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 229, 255, 0.5);
}

/* === SECTIONS === */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #C6FF00;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #C6FF00, #00E5FF);
    border-radius: 2px;
}

/* === CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: linear-gradient(135deg, #252A35 0%, #1C1F26 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 255, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    border-color: #C6FF00;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(198, 255, 0, 0.3);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    color: #C6FF00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card p {
    color: #E5E7EB;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* === SERVICE CARDS WITH IMAGES === */
.service-card {
    background: linear-gradient(135deg, rgba(37, 42, 53, 0.95) 0%, rgba(28, 31, 38, 0.95) 100%);
    padding: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.service-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(28, 31, 38, 0.8) 100%);
}

.service-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    border-color: #C6FF00;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(198, 255, 0, 0.3);
}

.service-card h3 {
    color: #C6FF00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #E5E7EB;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-card ul {
    position: relative;
    z-index: 2;
}

/* === FEATURES === */
.features {
    background: linear-gradient(135deg, #1C1F26 0%, #0F1419 100%);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(37, 42, 53, 0.5);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: rgba(198, 255, 0, 0.05);
    border-color: #C6FF00;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #C6FF00;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 20px rgba(198, 255, 0, 0.5);
}

/* === PROCESS STEPS === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #252A35, #1C1F26);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.step:hover {
    border-color: #00E5FF;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C6FF00, #A8E600);
    color: #1C1F26;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(198, 255, 0, 0.4);
}

/* === FAQ === */
.faq {
    background: linear-gradient(135deg, #0F1419 0%, #1C1F26 100%);
}

.faq-item {
    background: rgba(37, 42, 53, 0.6);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #C6FF00;
    box-shadow: 0 5px 20px rgba(198, 255, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #C6FF00;
    background: rgba(198, 255, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(198, 255, 0, 0.1);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #E5E7EB;
    line-height: 1.8;
}

/* === FORM === */
.form-container {
    max-width: 600px;
    margin: 3rem auto;
    background: linear-gradient(135deg, #252A35, #1C1F26);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #C6FF00;
    box-shadow: 0 15px 50px rgba(198, 255, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #C6FF00;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(198, 255, 0, 0.3);
    border-radius: 10px;
    background: rgba(28, 31, 38, 0.8);
    color: #E5E7EB;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C6FF00;
    box-shadow: 0 0 15px rgba(198, 255, 0, 0.3);
    background: rgba(28, 31, 38, 1);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

/* === CTA === */
.cta {
    background: linear-gradient(135deg, rgba(198, 255, 0, 0.1), rgba(0, 229, 255, 0.1)),
                url('./img/5e8hWZ.jpg') center/cover no-repeat;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 31, 38, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: #C6FF00;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* === FOOTER === */
footer {
    background: linear-gradient(135deg, #0F1419 0%, #1C1F26 100%);
    padding: 3rem 0 1rem;
    border-top: 3px solid #C6FF00;
}

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

.footer-section h3 {
    color: #C6FF00;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #E5E7EB;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(198, 255, 0, 0.2);
    color: #E5E7EB;
}

/* === CONTACT SECTION LAYOUT === */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-box {
    background: linear-gradient(135deg, #252A35, #1C1F26);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #C6FF00;
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.2);
}

.contact-info-box h3 {
    color: #C6FF00;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(198, 255, 0, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h4 {
    color: #00E5FF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-item p {
    color: #E5E7EB;
    margin: 0;
    line-height: 1.6;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #C6FF00;
    box-shadow: 0 10px 30px rgba(198, 255, 0, 0.2);
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
}

/* === COOKIE POPUP === */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #252A35, #1C1F26);
    padding: 1.5rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    border-top: 3px solid #C6FF00;
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* === POLICY PAGES === */
.policy-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #252A35, #1C1F26);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #C6FF00;
}

.policy-container h1 {
    color: #C6FF00;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container h2 {
    color: #00E5FF;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-container p,
.policy-container ul {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-container ul {
    padding-left: 2rem;
}

.policy-container strong {
    color: #C6FF00;
}

.contact-info {
    background: rgba(198, 255, 0, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #C6FF00;
    margin: 2rem 0;
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(198, 255, 0, 0.2);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .section-title {
        font-size: 1.75rem;
    }

    .cards-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .policy-container {
        padding: 2rem 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* === CONTENT PAGE STYLES === */
.content-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #252A35, #1C1F26);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #C6FF00;
}

.content-block h1 {
    color: #C6FF00;
    margin-bottom: 2rem;
    text-align: center;
}

.content-block h2 {
    color: #00E5FF;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-block ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-block ul li {
    margin-bottom: 0.5rem;
}

/* === GLOW EFFECTS === */
.glow-on-hover {
    position: relative;
    overflow: hidden;
}

.glow-on-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 255, 0, 0.4), transparent 70%);
    transition: width 0.6s ease, height 0.6s ease;
}

.glow-on-hover:hover::before {
    width: 300px;
    height: 300px;
}

