/* 
   Canadian Accounting Solutions - Main Stylesheet
   Color Palette:
   - Primary: #B6FF4E (Neon Lime)
   - Background: #0D0D0D (Coal Black)
   - Text: #FFFFFF (White), #BFBFBF (Gray)
   - Accents: #00D0FF (Electric Blue), #A100FF (Metallic Purple)
*/

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #0D0D0D;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #B6FF4E;
    transition: color 0.3s ease;
}

a:hover {
    color: #00D0FF;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #FFFFFF;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #B6FF4E;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    color: #B6FF4E;
}

p {
    margin-bottom: 1rem;
    color: #BFBFBF;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #B6FF4E;
    color: #0D0D0D;
}

.btn-primary:hover {
    background-color: #00D0FF;
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 208, 255, 0.4);
}

/* ===== HEADER ===== */
.site-header {
    padding: 20px 0;
    background-color: rgba(13, 13, 13, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.main-nav a:hover {
    color: #B6FF4E;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #B6FF4E;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.9)), url('../img/Oyh8j9.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #BFBFBF;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background-color: #0D0D0D;
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text p {
    text-align: left;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background-color: #121212;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid #B6FF4E;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(182, 255, 78, 0.2);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 0;
    background-color: #0D0D0D;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #1A1A1A;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #B6FF4E;
    transition: width 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    width: 10px;
}

.service-card .price {
    font-size: 1.8rem;
    color: #00D0FF;
    font-weight: bold;
    margin: 15px 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: #121212;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(182, 255, 78, 0.2);
    z-index: 0;
}

.client-info {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #B6FF4E;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-weight: bold;
    color: #B6FF4E;
    margin-bottom: 5px;
}

.client-location {
    font-size: 0.9rem;
    color: #BFBFBF;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #A100FF, #00D0FF);
    text-align: center;
}

.cta-section h2 {
    color: #FFFFFF;
}

.cta-section h2:after {
    background: #FFFFFF;
}

.cta-section p {
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-section .btn-primary {
    background-color: #FFFFFF;
    color: #0D0D0D;
}

.cta-section .btn-primary:hover {
    background-color: #B6FF4E;
    box-shadow: 0 5px 15px rgba(182, 255, 78, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background-color: #0D0D0D;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #232323;
    color: #FFFFFF;
    font-size: 16px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #B6FF4E;
    box-shadow: 0 0 0 2px rgba(182, 255, 78, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 80px 0 30px;
    background-color: #121212;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info, .footer-contact, .footer-links {
    margin-bottom: 30px;
}

.footer-info p, .footer-contact li {
    color: #BFBFBF;
}

.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: #BFBFBF;
    font-size: 0.9rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-form {
    display: flex;
    align-items: center;
}

.cookie-form label {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.cookie-form input[type="checkbox"] {
    margin-right: 5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .cookie-consent {
        flex-direction: column;
    }
    
    .cookie-text {
        margin-bottom: 20px;
        padding-right: 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .main-nav{
        display: none;
    }
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .benefits-grid, .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 