/* 
   Main Stylesheet for Accounting Services Website
   Color Palette:
   - Background: #0E0B16 (deep dark purple)
   - Text: #F5F5F5 (almost white)
   - Accent: #FF4E50 (bright coral red)
   - Secondary: #6A0572 (saturated purple)
   - Borders: #2E2636 (very dark gray with purple tint)
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0E0B16;
    color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #FF4E50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F5F5F5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 40px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #FF4E50;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #FF4E50;
    color: #F5F5F5;
}

.btn-primary:hover {
    background-color: #e64042;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 78, 80, 0.3);
}

.btn-secondary {
    background-color: #6A0572;
    color: #F5F5F5;
}

.btn-secondary:hover {
    background-color: #560460;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 5, 114, 0.3);
}

.btn-nav {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header and Navigation */
.site-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(14, 11, 22, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #F5F5F5;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #FF4E50;
}

.main-nav a.btn-nav {
    color: #F5F5F5;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 30px;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #F5F5F5;
    transition: all 0.3s ease;
}

/* Main Content Sections */
main {
    padding-top: 80px; /* For fixed header */
}

section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: #120d1d;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(14, 11, 22, 0.9), rgba(14, 11, 22, 0.6));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-content {
    width: 100%;
    animation: fadeIn 1s ease-out;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background-color: #2E2636;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #6A0572;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
}

.benefit-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background-color: #FF4E50;
    opacity: 0.3;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: #2E2636;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: #FF4E50;
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover:before {
    height: 100%;
}

/* Why Choose Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-us-card {
    background-color: #2E2636;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    background-position: center;
    background-size: cover;
    background-color: #6A0572;
    overflow: hidden;
}

.why-us-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(106, 5, 114, 0.7);
    z-index: 1;
}

.why-us-card:nth-child(1) .why-us-icon {
    background-image: url('img/NxcwIW.jpg');
}

.why-us-card:nth-child(2) .why-us-icon {
    background-image: url('img/NXRo6O.jpg');
}

.why-us-card:nth-child(3) .why-us-icon {
    background-image: url('img/nFHMWu.jpg');
}

.why-us-card:nth-child(4) .why-us-icon {
    background-image: url('img/NBkfpK.jpg');
}

/* Testimonials Section */
.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background-color: #2E2636;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #6A0572;
    opacity: 0.3;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #2E2636;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: #FF4E50;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background-color: #2E2636;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid #FF4E50;
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured:before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FF4E50;
    color: #F5F5F5;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 10px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-description {
    color: #ccc;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF4E50;
    font-weight: 700;
}

.pricing-cta {
    padding: 30px;
    text-align: center;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 2;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #2E2636;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: #F5F5F5;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF4E50;
    box-shadow: 0 0 0 3px rgba(255, 78, 80, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-submit {
    margin-top: 30px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: #2E2636;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: fadeInUp 0.5s ease-out;
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-content form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #120d1d;
    overflow: hidden;
}

.thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(14, 11, 22, 0.9), rgba(14, 11, 22, 0.6));
    z-index: 1;
}

.thank-you .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.thank-you-content {
    width: 100%;
    padding: 40px;
}

.thank-you-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.thank-you-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.thank-you-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Policy Pages */
.policy-page {
    padding: 100px 0;
}

.policy-content {
    background-color: #2E2636;
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}

.policy-content h2 {
    margin-top: 40px;
}

.policy-content ul, 
.policy-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    padding: 80px 0 20px;
    background-color: #0A0812;
    border-top: 1px solid #2E2636;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    opacity: 0.7;
    max-width: 300px;
}

.footer-column h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #FF4E50;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #F5F5F5;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #FF4E50;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #2E2636;
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1200px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .about-content,
    .about-image {
        width: 100%;
    }
    
    .about-image {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #0E0B16;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        gap: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        flex: auto;
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .footer-column {
        flex: 100%;
    }
}

@media screen and (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .pricing-grid,
    .services-grid,
    .benefits-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .testimonial-card {
        min-width: auto;
    }
    
    .thank-you-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Package Selection Buttons */
.package-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.package-buttons input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.package-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #2E2636;
    border: 1px solid #6A0572;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.package-button:hover {
    background-color: #3a3045;
}

.package-buttons input[type="radio"]:checked + .package-button {
    background-color: #6A0572;
    color: #F5F5F5;
    border-color: #FF4E50;
}

@media screen and (max-width: 768px) {
    .package-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .package-button {
        text-align: center;
    }
} 