/* 
 * Main Stylesheet for Accounting Services Website
 * Color Palette:
 * - Background: #121212 (deep anthracite)
 * - Primary Accent: #FFD369 (bright gold)
 * - Secondary Elements: #2D9CDB (electric blue), #EB5757 (coral)
 * - Text: #E0E0E0 (pastel gray), #FFFFFF (white)
 */

/* -------------- Reset & Base Styles -------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #E0E0E0;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #FFFFFF;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* -------------- Buttons -------------- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD369, #F9A826);
    color: #121212;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F9A826, #FFD369);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 211, 105, 0.3);
    color: #121212;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #2D9CDB;
    color: #2D9CDB;
}

.btn-secondary:hover {
    background-color: #2D9CDB;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* -------------- Header & Navigation -------------- */
.site-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    margin-left: 0.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-nav ul li {
    margin-left: 1.5rem;
}

.desktop-nav a {
    color: #E0E0E0;
    font-weight: 500;
    position: relative;
}

.desktop-nav a:hover {
    color: #FFD369;
}

.desktop-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FFD369;
    transition: width 0.3s ease;
}

.desktop-nav a:hover:after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #2D9CDB, #56CCF2);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #56CCF2, #2D9CDB);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 156, 219, 0.4);
}

.nav-cta:after {
    display: none !important;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
}

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(18, 18, 18, 0.95);
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-nav ul {
        flex-direction: column;
    }
    
    .mobile-nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .mobile-nav a {
        display: block;
        padding: 0.5rem 0;
        color: #E0E0E0;
        font-weight: 500;
    }
    
    .mobile-nav a:hover {
        color: #FFD369;
    }
    
    .mobile-nav .nav-cta {
        margin-top: 0.5rem;
    }
}

/* -------------- Main Sections -------------- */
main {
    padding-top: 80px; /* Adjust based on header height */
}

section {
    padding: 5rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2D9CDB, #FFD369);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.8)), url('../img/HsJVn9.jpg');
    background-size: cover;
    background-position: center;
    padding: 0;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #FFFFFF, #FFD369);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #E0E0E0;
}

/* About Section */
.about-section {
    background-color: #1A1A1A;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #121212, #1A1A1A);
}

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

.benefit-card {
    background: linear-gradient(135deg, #1A1A1A, #222222);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    background-color: #121212;
}

.services-grid {
    display: flex; /* Changed to flex for a row layout */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center the cards */
    gap: 1.5rem; /* Reduced gap between cards */
}

.service-card {
    background: linear-gradient(135deg, #1A1A1A, #222222);
    padding: 0 0 1.5rem; /* Reduced padding */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 0 1 300px; /* Set base width for cards to make them smaller */
    max-width: 300px; /* Maximum width */
    margin: 0 0.5rem; /* Add margin for spacing */
}

.service-card:hover {
    transform: translateY(-5px); /* Reduced lift on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-image {
    width: 100%;
    height: 160px; /* Reduced height */
    overflow: hidden;
    margin-bottom: 1rem; /* Reduced margin */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 0 1rem; /* Reduced padding */
    margin-bottom: 0.75rem; /* Reduced margin */
    font-size: 1.25rem; /* Smaller font size */
}

.service-card p {
    padding: 0 1rem; /* Reduced padding */
    margin-bottom: 1rem; /* Reduced margin */
    font-size: 0.9rem; /* Smaller font size */
}

.service-card a {
    margin: auto auto 0;
    padding: 0.6rem 1.2rem; /* Smaller button */
    font-size: 0.9rem; /* Smaller font size */
}

/* Infographic Section */
.infographic-section {
    background: linear-gradient(135deg, #1A1A1A, #222222);
    text-align: center;
}

.infographic-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.infographic-item {
    flex: 1;
    min-width: 200px;
}

.infographic-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #FFD369, #F9A826);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.infographic-text {
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #121212;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #1A1A1A, #222222);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #FFD369;
}

.author-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #1A1A1A, #222222);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: linear-gradient(90deg, #1A1A1A, #222222);
    padding: 1rem;
    cursor: pointer;
}

.faq-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #FFFFFF;
    text-decoration: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: #FFD369;
}

.faq-answer {
    background-color: #1A1A1A;
    padding: 1rem;
    border-top: 1px solid #333;
}

/* Contact Section */
.contact-section {
    background-color: #121212;
}

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

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #FFD369;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.contact-form form {
    background: linear-gradient(135deg, #1A1A1A, #222222);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #1A1A1A;
    color: #E0E0E0;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD369;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Map Section */
.map-section {
    padding: 0;
}


.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thanks Section */
.thanks-section {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, #1A1A1A, #222222);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
    text-align: left;
}

.thanks-cta {
    margin-top: 2rem;
}

/* Policy Pages */
.policy-section {
    min-height: calc(100vh - 300px);
    padding-top: 2rem;
}

.policy-content {
    background: linear-gradient(135deg, #1A1A1A, #222222);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-date {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-text h2 {
    margin-top: 2rem;
    color: #FFD369;
}

.policy-text p, 
.policy-text ul, 
.policy-text ol {
    margin-bottom: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cookie-table th, 
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.cookie-table th {
    background-color: #222;
    color: #FFD369;
}

/* -------------- Footer -------------- */
.site-footer {
    background-color: #1A1A1A;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-logo a {
    display: block;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    margin-left: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #999;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-links-column {
    min-width: 200px;
}

.footer-links-column h3 {
    color: #FFD369;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-column a {
    color: #E0E0E0;
}

.footer-links-column a:hover {
    color: #FFD369;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-legal ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-legal ul li {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.footer-legal a {
    color: #999;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #FFD369;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

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

/* -------------- Media Queries -------------- */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, 
    .about-text {
        flex: 1 1 100%;
    }
    
    .infographic-item {
        flex: 1 1 40%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal ul {
        justify-content: center;
    }
    
    .footer-legal ul li {
        margin: 0 0.75rem 1rem;
    }
    
    .footer-copyright {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .policy-content {
        padding: 2rem 1rem;
    }
} 

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
} 