/* 
* Scholarzephyron Accounting - Main Stylesheet
* Color Palette:
* Background: Gradient from #25063C to #3B0A56
* Accent: #C6FF00 (Neon Lime)
* Primary Text: #E5E5E5 (Light Gray)
* Secondary Text: #A1A1A1 (Gray)
* Hover/Transitions: #FDD8F4 (Pearl Pink)
* CTA Color: #00D1FF (Sea Azure)
*/

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #25063C 0%, #3B0A56 100%);
    color: #E5E5E5;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    color: #00D1FF;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover, a:focus {
    color: #FDD8F4;
    transform: scale(1.02);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #C6FF00;
    animation: widthPulse 3s infinite;
}

@keyframes widthPulse {
    0%, 100% { width: 80px; }
    50% { width: 120px; }
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C6FF00;
    color: #25063C;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn:hover, .btn:focus {
    background-color: #00D1FF;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #C6FF00;
    color: #C6FF00;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #C6FF00;
    color: #25063C;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    background: rgba(37, 6, 60, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #C6FF00;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #C6FF00;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: url('../img/Tu34g0.jpg') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 6, 60, 0.8) 0%, rgba(59, 10, 86, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background: rgba(15, 3, 25, 0.7);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 255, 0, 0.1) 0%, rgba(198, 255, 0, 0) 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: scale(1.03) rotate(1deg);
}

.advantages {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    text-align: center;
    background: rgba(37, 6, 60, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    font-size: 2.5rem;
    color: #C6FF00;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: rgba(37, 6, 60, 0.8);
    position: relative;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(59, 10, 86, 0.6);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #C6FF00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: #00D1FF;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #FDD8F4;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C6FF00;
    margin: 1rem 0;
}

/* Why Choose Us Section */
.why-us {
    background: rgba(15, 3, 25, 0.7);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.why-us-item {
    background: rgba(37, 6, 60, 0.5);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198, 255, 0, 0.1);
    border-radius: 50%;
}

.why-us-icon svg {
    width: 40px;
    height: 40px;
    fill: #C6FF00;
}

/* Testimonials Section */
.testimonials {
    background: rgba(37, 6, 60, 0.8);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(59, 10, 86, 0.6);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: -5px;
    top: -20px;
    font-size: 4rem;
    color: rgba(198, 255, 0, 0.3);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C6FF00;
}

.author-info h4 {
    color: #FDD8F4;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #A1A1A1;
    font-size: 0.9rem;
}

/* Form Section */
.contact-form-section {
    background: rgba(15, 3, 25, 0.7);
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(37, 6, 60, 0.6);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(15, 3, 25, 0.5);
    border: 1px solid rgba(198, 255, 0, 0.3);
    border-radius: 4px;
    color: #E5E5E5;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #C6FF00;
    box-shadow: 0 0 0 2px rgba(198, 255, 0, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #C6FF00;
}

.form-submit {
    margin-top: 1rem;
    width: 100%;
}

/* Error messages */
.error-messages {
    background: rgba(255, 50, 50, 0.1);
    border-left: 4px solid #ff3232;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0 4px 4px 0;
}

.error-messages p {
    color: #ff9999;
    margin-bottom: 0.5rem;
}

.error-messages p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background: rgba(37, 6, 60, 0.8);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion {
    margin-bottom: 1rem;
}

.accordion-header {
    padding: 1rem;
    background: rgba(59, 10, 86, 0.6);
    color: #E5E5E5;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 1rem;
    transition: transform 0.3s ease;
}

.accordion-header:hover {
    background: rgba(59, 10, 86, 0.8);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    background: rgba(15, 3, 25, 0.5);
    transition: all 0.3s ease;
}

.accordion input {
    display: none;
}

.accordion input:checked + .accordion-header {
    background: #C6FF00;
    color: #25063C;
}

.accordion input:checked + .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion input:checked ~ .accordion-content {
    max-height: 500px;
    padding: 1rem;
}

/* Contact Section */
.contact {
    background: rgba(15, 3, 25, 0.7);
    position: relative;
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #C6FF00;
    margin-top: 0.2rem;
}

/* Footer */
footer {
    background: rgba(15, 3, 25, 0.9);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #A1A1A1;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: #FDD8F4;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-legal h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: #C6FF00;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-contact address {
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid rgba(161, 161, 161, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #A1A1A1;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 3, 25, 0.95);
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

.cookie-text {
    margin-right: 2rem;
}

.cookie-btn {
    flex-shrink: 0;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thank-you h1 {
    margin-bottom: 2rem;
    color: #C6FF00;
}

.thank-you p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.check-icon {
    font-size: 5rem;
    color: #C6FF00;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(37, 6, 60, 0.6);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.policy-content h1 {
    color: #C6FF00;
    margin-bottom: 2rem;
}

.policy-content h2 {
    color: #FDD8F4;
    margin: 2rem 0 1rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(37, 6, 60, 0.95);
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }
    
    nav li {
        width: 100%;
        text-align: center;
    }
    
    nav a {
        display: block;
        padding: 1rem 0;
    }
    
    .advantages {
        flex-direction: column;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        min-height: 60vh;
    }
} 