/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #12372a;
    background-color: #436850;
}

/* Header Section */
.header {
    position: relative;
    background: url('/assets/images/pricing.webp') no-repeat center center/cover;
    height: 500px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

/* Logo and Text Styling */
.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: absolute;
    top: 20px;
    left: 20px;
    animation: fadeInRight 1.5s ease;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 0.5rem;
}

.company-name {
    font-size: 2rem;
    font-weight: bold;
    color: #adbc9f;
    text-shadow: 2px 2px 5px #000000, -2px -2px 5px #000000, 2px -2px 5px #000000, -2px 2px 5px #000000;
}

.header-text {
    font-size: 4rem;
    font-weight: 700;
    color: #adbc9f;
    text-shadow: 2px 2px 5px #000000, -2px -2px 5px #000000, 2px -2px 5px #000000, -2px 2px 5px #000000;
    animation: fadeInUp 1.5s ease;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 1rem;
    background-color: #fbfada;
    min-height: 100vh;
}

.pricing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-boxes {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 800px;
}

/* Pricing Box Styling */
.pricing-box {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 320px;
    height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
    position: absolute;
    opacity: 0.7;
    filter: blur(2px);
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 150px;
    background: #12372A;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.pricing-box[data-plan="standard"]::before {
    background: #436850;
}

.pricing-box[data-plan="premium"]::before {
    background: #ADBC9F;
}

/* RESTORED ORIGINAL TEXT COLORS */
.pricing-box h2 {
    font-size: 2rem;
    color: #436850;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pricing-box .price {
    font-size: 1.8rem;
    color: #436850;
    margin-bottom: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.pricing-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
}

.pricing-box ul li {
    font-size: 1.1rem;
    color: #12372a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ADBC9F;
}

.pricing-box ul li:last-child {
    border-bottom: none;
}

.pricing-box ul li::before {
    content: '✔️';
    font-size: 1rem;
    color: #436850;
}

.pricing-box ul li.excluded::before {
    content: '❌';
    color: #ff6b6b;
}

.pricing-box .cta-button {
    background: linear-gradient(145deg, #adbc9f, #8fa88a);
    color: #12372a;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.pricing-box .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(173, 188, 159, 0.4);
}

/* Nav Buttons Styling */
.nav-button {
    background: linear-gradient(145deg, #adbc9f, #8fa88a);
    color: #12372a;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-button.left-button {
    left: 20px;
}

.nav-button.right-button {
    right: 20px;
}

.nav-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(173, 188, 159, 0.4);
}

/* Additional Tax Services Section - Using features styling */
.additional-services {
    background-color: #436850;
    padding: 4rem 1rem;
    color: #FBFADA;
}

.services-container {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.services-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FBFADA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 1rem;
}

.service-card {
    background-color: #12372A;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    animation: slideIn 1.5s ease;
}

.service-card h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    color: #ADBC9F;
    margin-bottom: 10px;
}

.service-card .price {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: #FBFADA;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #FBFADA;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Footer Section */
footer {
    background-color: #12372A;
    color: #FBFADA;
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

footer p {
    margin: 10px 0;
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Sticky Button */
.sticky-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #436850;
    color: #FBFADA;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 20px;
    border: 3px solid #000000;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

.sticky-button:hover {
    background-color: #ADBC9F;
    color: #12372A;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: fixed;
    top: 60px;
    right: 20px;
    background-color: #12372A;
    border: 3px solid #000000;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

.dropdown-content.show {
    display: block;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #FBFADA;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content li a:hover {
    background-color: #ADBC9F;
    color: #12372A;
}

.dropdown-content li a.active {
    background-color: #436850;
    color: #FBFADA;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-text {
        font-size: 3rem;
    }
    
    .pricing-boxes {
        height: 700px;
    }
    
    .pricing-box {
        width: 280px;
        height: 650px;
    }
}

@media (max-width: 480px) {
    .header-text {
        font-size: 2.5rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .pricing-boxes {
        height: 600px;
    }
    
    .pricing-box {
        width: 250px;
        height: 580px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}