/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    color: #f4c430;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-brand .logo {
    height: 25px;
    margin-top: 0.5rem;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f4c430;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4c430;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4c430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}



.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-buttons .button-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #f4c430 0%, #e6b422 100%);
    color: #1a1a1a;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 196, 48, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #f4c430;
}

.cta-button.secondary:hover {
    background: #f4c430;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #2d2d2d;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4c430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.services-grid.three-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1000px;
    margin: 3rem auto 0;
}

.service-card {
    background: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #f4c430;
    box-shadow: 0 20px 40px rgba(244, 196, 48, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4c430 0%, #e6b422 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #cccccc;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Additional Benefits Section */
.additional-benefits {
    padding: 100px 0;
    background: #1a1a1a;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text {
    text-align: right;
    padding-left: 2rem;
}

.benefits-text h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.benefits-text > p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.benefits-list {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    color: #f4c430;
    font-size: 1.2rem;
    flex-shrink: 0;
    order: 2;
}

.benefit-item span {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    order: 1;
}

.cta-section {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 2rem;
}

.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.info-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #f4c430;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    text-align: center;
}

.info-note i {
    color: #f4c430;
    font-size: 0.9rem;
}

.hero-info {
    margin-top: 1rem;
    justify-content: center;
    display: flex;
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Interactive Funding Calculator */
.funding-calculator {
    padding: 100px 0;
    background: #2d2d2d;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 4rem;
    font-weight: 400;
}

.calculator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-input {
    text-align: center;
    margin-bottom: 4rem;
}

.calculator-input h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.employee-selector {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.employee-btn {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.employee-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 196, 48, 0.1), transparent);
    transition: left 0.5s ease;
}

.employee-btn:hover::before {
    left: 100%;
}

.employee-btn i {
    font-size: 2rem;
    color: #666;
    transition: color 0.3s ease;
}

.employee-btn span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.employee-btn small {
    font-size: 0.9rem;
    color: #888;
}

.employee-btn:hover,
.employee-btn.active {
    border-color: #f4c430;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(244, 196, 48, 0.2);
}

.employee-btn.active i,
.employee-btn:hover i {
    color: #f4c430;
}

.calculator-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: #f4c430;
    box-shadow: 0 10px 20px rgba(244, 196, 48, 0.1);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f4c430 0%, #e6b422 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.result-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.result-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.savings-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.savings-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f4c430 0%, #e6b422 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.savings-percentage,
.amount {
    transform-origin: center;
}

.savings-text {
    color: #cccccc;
    font-size: 0.9rem;
}

.total-savings {
    grid-column: span 2;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #f4c430;
    position: relative;
    overflow: hidden;
}

.total-savings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.total-savings h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.total-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.currency,
.period {
    color: #cccccc;
    font-size: 1.1rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f4c430 0%, #e6b422 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        filter: drop-shadow(0 0 5px rgba(244, 196, 48, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(244, 196, 48, 0.8));
    }
}

.info-banner {
    background: linear-gradient(135deg, #f4c430 0%, #e6b422 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 3rem;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.info-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Process Steps Section */
.process-steps {
    padding: 60px 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(244, 196, 48, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.step-item:nth-child(even) {
    grid-template-columns: 1fr 60px;
    direction: rtl;
    transform: translateX(30px);
}

.step-item:nth-child(even) .step-content {
    direction: ltr;
    text-align: right;
}

.step-item:nth-child(even) .step-number {
    order: 2;
}

.step-item[data-step="1"] { animation-delay: 0.2s; }
.step-item[data-step="2"] { animation-delay: 0.4s; }
.step-item[data-step="3"] { animation-delay: 0.6s; }
.step-item[data-step="4"] { animation-delay: 0.8s; }
.step-item[data-step="5"] { animation-delay: 1.0s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4c430 0%, #e6b422 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
    position: relative;
    z-index: 3;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4c430, #e6b422);
    z-index: -1;
    opacity: 0.3;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.step-content {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #333;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-content:hover::before {
    opacity: 1;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: #f4c430;
    box-shadow: 0 15px 30px rgba(244, 196, 48, 0.2);
}

.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(244, 196, 48, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 1.5rem;
    color: #f4c430;
}

.step-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.step-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.step-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #f4c430 0%, #e6b422 100%);
    margin: 0 auto;
    position: relative;
    left: 29px;
    opacity: 0.6;
}

.process-cta {
    text-align: center;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid #f4c430;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.guarantee-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: #f4c430;
    font-size: 0.9rem;
}

.guarantee-note i {
    font-size: 1rem;
}

/* Contact Footer Section */
.contact-footer {
    background: #2d2d2d;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.company-logo {
    text-align: center;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.company-logo img:hover {
    transform: scale(1.05);
}

.company-logo h4 {
    color: #f4c430;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-end;
}

.contact-item i {
    color: #f4c430;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f4c430;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.footer-link:hover {
    color: #f4c430;
}

.copyright p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    border-radius: 20px;
    border: 2px solid #f4c430;
    max-width: 600px;
    max-height: 80vh;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f4c430;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: scale(1.1);
    background: #e6b422;
}

.modal-close i {
    color: #1a1a1a;
    font-size: 1rem;
}

.modal-body {
    padding: 3rem 2rem 2rem;
    overflow-y: auto;
    max-height: calc(80vh - 4rem);
}

.modal-body h2 {
    color: #f4c430;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-text h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
}

.modal-text p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f4c430 0%, #e6b422 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(244, 196, 48, 0.3);
}

.back-to-top.show {
    display: flex;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
}

.placeholder-image::before {
    content: 'Image Placeholder';
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .button-row {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid.three-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .benefits-image {
        order: 2;
    }
    
    .benefits-text {
        order: 1;
        text-align: center;
        padding-left: 0;
    }
    
    .benefit-item {
        justify-content: center;
    }
    
    .benefit-item i {
        order: 1;
    }
    
    .benefit-item span {
        order: 2;
    }
    

    
    .employee-selector {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .total-savings {
        grid-column: span 1;
    }
    
    .total-amount {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .benefits-text h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-logo img {
        width: 140px;
        height: 140px;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .benefits-text h2 {
        font-size: 1.6rem;
    }
    
    .funding-cards {
        gap: 1.5rem;
    }
    
    .employee-btn {
        min-width: 120px;
        padding: 1.5rem 1rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .total-savings {
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Process Steps Responsive */
@media (max-width: 768px) {
    .step-item:nth-child(even) {
        grid-template-columns: 60px 1fr;
        direction: ltr;
    }
    
    .step-item:nth-child(even) .step-content {
        direction: ltr;
        text-align: left;
    }
    
    .step-item:nth-child(even) .step-number {
        order: 1;
    }
}

@media (max-width: 480px) {
    .step-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 1.2rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-connector {
        left: 24px;
        height: 15px;
    }
    
    .process-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .steps-timeline {
        gap: 0.8rem;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .step-text {
        text-align: center;
    }
    
    .company-logo img {
        width: 120px;
        height: 120px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f4c430;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}