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

:root {
    --primary-color: #FF8C00;
    --secondary-color: #FFA500;
    --dark-bg: #000000;
    --dark-surface: #111111;
    --dark-card: #1a1a1a;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --gradient-primary: linear-gradient(135deg, #FF8C00, #FFA500);
    --gradient-secondary: linear-gradient(135deg, #FFA500, #FF6B00);
    --success-color: #00ff88;
    --warning-color: #FF8C00;
}

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

body {
    font-family: 'Loos Normal', 'Arial', sans-serif;
    background: linear-gradient(-45deg, #000000, #0a0a0a, #111111, #0f0f0f);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    color: var(--text-primary);
    line-height: 1.6;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

p {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFA500, #FF8C00);
    border-radius: 10px;
    border: 2px solid #111111;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFB84D, #FFA500);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(17, 17, 17, 0.95), rgba(255, 140, 0, 0.1));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    color: #FF8C00;
    text-shadow: 0 0 10px #FF8C00;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFA500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.navbar li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    min-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown::-webkit-scrollbar {
    width: 6px;
}

.dropdown::-webkit-scrollbar-track {
    background: rgba(255, 140, 0, 0.1);
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.5);
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.7);
}

.navbar li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown a {
    display: flex; 
    align-items: center;
    padding: 4px 20px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background: rgba(255, 140, 0, 0.15);
    border-left-color: #FF8C00;
    padding-left: 25px;
    color: #FF8C00;
}

/* Scroll offset para âncoras */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* Hero Services */
.hero-services {
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(255, 140, 0, 0.15) 0%, transparent 60%);
}

.hero-services h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-services h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-services p {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float-particle 0.5s linear infinite;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.8rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    justify-items: center;
}

.stat-card {
    background: var(--dark-card);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: pop-in 0.6s ease-out forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-card:hover {
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-5px) scale(1.05);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.security-shield {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.shield-icon {
    font-size: 3rem;
    color: var(--primary-color);
    z-index: 10;
    position: relative;
    animation: shield-pulse 2s ease-in-out infinite;
}

@keyframes shield-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.8));
    }
}

.security-layers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.layer {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: expand-layer 3s ease-in-out infinite;
}

.layer-1 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

.layer-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-delay: 1s;
}

.layer-3 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation-delay: 2s;
}

@keyframes expand-layer {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: clamp(2rem, 3vw, 3.5rem);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-item > * {
    flex: 1;
}

.service-item:hover {
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.6);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.08), transparent);
    transition: left 0.8s ease;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem !important;
}

.service-title h2 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin-bottom: 0.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.service-badge {
    background: var(--gradient-primary);
    color: white;
}

.service-badge.premium {
    background: var(--gradient-secondary);
}

.service-badge.express {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
}

.service-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateX(-20px);
    animation: slide-in-feature 0.5s ease-out forwards;
}

.service-features li:nth-child(1) { animation-delay: 0.1s; }
.service-features li:nth-child(2) { animation-delay: 0.2s; }
.service-features li:nth-child(3) { animation-delay: 0.3s; }
.service-features li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slide-in-feature {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-features i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

.service-price:hover {
    border-color: rgba(255, 140, 0, 0.4);
    background: rgba(255, 140, 0, 0.05);
}

.price {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: bold;
    color: var(--primary-color);
    word-break: break-word;
    line-height: 1.3;
}

.btn-service {
    padding: 0.8rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.btn-service:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.6);
}

/* Service Visuals */
.service-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.chart-container {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.8rem;
    height: 160px;
    margin: 0 auto;
}

.chart-bar {
    width: 30px;
    background: var(--gradient-primary);
    border-radius: 5px 5px 0 0;
    position: relative;
    height: 0;
    transition: height 1s ease-out;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
    animation: grow-bar 1.5s ease-out forwards, pulse-bar 2s ease-in-out 1.5s infinite;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: glow-dot 2s ease-in-out infinite;
}

@keyframes grow-bar {
    from { 
        height: 0;
        opacity: 0;
    }
    to { 
        height: var(--bar-height);
        opacity: 1;
    }
}

@keyframes pulse-bar {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
    }
}

@keyframes glow-dot {
    0%, 100% {
        box-shadow: 0 0 10px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
}

.tax-calculator {
    background: var(--dark-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.calculator-display {
    text-align: center;
}

.tax-before {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.tax-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0.8rem 0;
}

.tax-after {
    color: var(--success-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.tax-savings {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.employee-cards {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.employee-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--dark-card);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: slide-in 0.5s ease-out;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.employee-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.employee-info {
    flex: 1;
}

.employee-name {
    height: 15px;
    background: var(--text-secondary);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.employee-role {
    height: 12px;
    background: var(--text-secondary);
    border-radius: 3px;
    width: 70%;
    opacity: 0.2;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 320px;
    position: relative;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--dark-card);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.5);
    animation: timeline-appear 0.5s ease-out forwards;
}

.timeline-step:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-step:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-step:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-step:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes timeline-appear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    background: var(--dark-card);
    color: var(--text-secondary);
    border: 2px solid var(--dark-card);
}

.timeline-step.completed .step-number {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.timeline-step.active .step-number {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--dark-surface);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.6);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-secondary);
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    z-index: 10;
    position: relative;
    flex-wrap: wrap;
}

.footer-logo {
    max-width: 250px;
}

.logo-footer-img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.75em;
    line-height: 1.4;
    opacity: 0.7;
}

.footer-links, .footer-contact {
    margin-left: 50px;
}

.footer-links h3, .footer-contact h3 {
    color: #FFA500;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin: 5px 0;
    font-size: 0.9em;
}

.fi-sr-phone-call,
.fi-sr-envelope,
.fi-sr-marker {
    color: #FFA500;
    margin-right: 8px;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .service-item {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }
    
    .service-item.reverse {
        flex-direction: column;
    }
    
    .service-header {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .particle {
        display: none;
    }
    
    .stat-card {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    
    .shield-icon {
        animation: none !important;
    }
    
    .layer {
        display: none;
    }
    
    .service-features li {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    
    .chart-bar {
        animation: none !important;
        height: var(--bar-height);
    }
    
    .chart-bar::after {
        animation: none !important;
    }
    
    .employee-card {
        animation: none !important;
    }
    
    .timeline-step {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
    
    .timeline-step.active .step-number {
        animation: none !important;
    }
    .header {
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 70px);
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(15px);
        border-right: 1px solid rgba(255, 140, 0, 0.2);
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .navbar a {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .navbar li {
        border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    }
    
    .navbar > ul > li > a {
        display: block;
        padding: 15px 20px;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        padding: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown {
        max-height: 500px;
    }
    
    .dropdown a {
        padding: 12px 30px !important;
        border-left: none !important;
    }
    
    .hero-services {
        padding: 8rem 0 3rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .service-item {
        padding: 2.5rem 2rem;
        margin-bottom: 3rem;
    }
    
    .service-header {
        flex-direction: row;
        text-align: left;
        gap: 1.2rem;
        margin-bottom: 2rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .service-icon i {
        font-size: 1.5rem !important;
    }
    
    .service-title {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .service-title h2 {
        margin: 0;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        align-self: flex-start;
    }
    
    .service-content p {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .service-features {
        margin-bottom: 2rem;
    }
    
    .service-features li {
        margin-bottom: 1rem;
        gap: 0.8rem;
    }
    
    .service-features i {
        flex-shrink: 0;
    }
    
    .service-price {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .price {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
    
    .btn-service {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .service-visual {
        display: flex;
        width: 100%;
        height: auto;
        min-height: 200px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .tax-calculator,
    .employee-cards,
    .chart-container {
        width: 100%;
        max-width: 100%;
    }
    
    .timeline {
        flex-direction: column;
        gap: 1.2rem;
        max-width: 180px;
    }
    
    .timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        height: auto;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .security-shield {
        width: 100px;
        height: 100px;
    }
    
    .shield-icon {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-section h2 {
        padding: 0 1rem;
    }
    
    .cta-section p {
        padding: 0 1rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 5%;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        margin-left: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem !important;
    }
    
    .service-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.7rem;
    }
    
    .service-content p {
        margin-bottom: 1.5rem;
    }
    
    .service-features {
        margin-bottom: 1.5rem;
    }
    
    .service-features li {
        gap: 0.7rem;
        margin-bottom: 0.9rem;
    }
    
    .service-price {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .btn-service {
        padding: 0.9rem 1.5rem;
    }
    
    .service-visual {
        min-height: 180px;
        justify-content: center;
        align-items: center;
    }
    
    .stats-grid {
        gap: 0.8rem;
    }
    
    .timeline {
        max-width: 100%;
    }
    
    .security-shield {
        width: 150px;
        height: 150px;
    }
    
    .shield-icon {
        font-size: 3rem;
    }
}
