/* Base Styles */
:root {
    --primary-color: #3563E9;
    --secondary-color: #54A6FF;
    --accent-color: #FF9800;
    --dark-color: #1A202C;
    --light-color: #F7FAFC;
    --grey-color: #EDF2F7;
    --border-color: #E2E8F0;
    --text-color: #4A5568;
    --heading-color: #2D3748;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    scroll-margin-top: 90px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(53, 99, 233, 0.3);
}

.btn-primary:hover {
    background-color: #2851D8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 99, 233, 0.4);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #3a78c5;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    max-height: 50px;
}

.logo a {
    display: block;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 0 0 35px;
}

.nav-links li a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.btn {
    padding: 12px 24px;
    border-radius: 8px;
}

.nav-links li a.btn::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    position: absolute;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:last-child {
    top: 18px;
}

.hamburger.active span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 9px;
}

/* Hero Section */
.hero {
    background-color: var(--light-color);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.07;
    z-index: 1;
    transition: transform 0.3s ease-out;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    width: 100%;
}

.hero-content {
    max-width: 550px;
    padding-right: 20px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(53, 99, 233, 0.1);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(53, 99, 233, 0.1);
    animation: fadeIn 1s ease-out;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out;
}

.hero-content h1 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(53, 99, 233, 0.2);
    z-index: -1;
    border-radius: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.6;
    animation: slideUp 1s ease-out 0.2s backwards;
}

.cta-buttons {
    margin-bottom: 0;
    animation: slideUp 1.2s ease-out 0.4s backwards;
}

.cta-buttons .btn {
    margin-right: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1rem;
}

.hero-image {
    max-width: 550px;
    position: relative;
    animation: float 6s ease-in-out infinite, fadeIn 1.5s ease-out;
}

.hero-image.animate-in {
    animation: float 6s ease-in-out infinite, slideInRight 1s ease-out;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 450px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.services h2 {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--grey-color);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
}

.card h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* About Section */
.about {
    background-color: var(--light-color);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: 1;
}

.about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 550px;
    padding-right: 30px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.stat-item {
    position: relative;
    padding-left: 25px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    padding-bottom: 5px;
}

.stat-item:hover {
    transform: translateX(5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(53, 99, 233, 0.2);
}

.stat-number.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-number.animated.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-image {
    max-width: 500px;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, var(--light-color));
    z-index: 2;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.benefits li {
    display: flex;
    margin-bottom: 20px;
}

.benefit-icon {
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text h3 {
    margin-bottom: 5px;
}

/* Calculator Section */
.calculator {
    background-color: white;
}

.calculator-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--grey-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.calculator-form {
    padding: 40px;
    flex: 1;
    min-width: 300px;
}

.calculator-result {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.calculator-result h3 {
    color: white;
}

.payment-amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.customer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.customer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.customer-name {
    font-weight: 600;
}

/* FAQ Section */
.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 50px 40px;
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.contact-method {
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
    padding-left: 15px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-method h3::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-method p a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method p a:hover {
    color: white;
    text-decoration: underline;
}

.contact-form {
    flex: 1.5;
    min-width: 400px;
    padding: 60px 50px;
    background-color: white;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--grey-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--grey-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(53, 99, 233, 0.15);
    background-color: white;
}

.contact-form button {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 10px;
    transition: var(--transition);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(53, 99, 233, 0.2);
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        min-width: 100%;
    }
    
    .contact-info {
        padding: 40px 30px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-method h3 {
        font-size: 1.3rem;
    }
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

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

.footer-logo p {
    margin-top: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.link-column {
    margin-right: 50px;
    margin-bottom: 30px;
}

.link-column h4 {
    color: white;
    margin-bottom: 20px;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.link-column ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    border-top: none;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p a {
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom p a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links {
    display: flex;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
}

.social-icon:hover {
    color: white;
}

.legal-links {
    margin-top: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 20px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 0;
        height: auto;
        min-height: 100vh;
    }

    .hero .container,
    .about .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image {
        max-width: 90%;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        justify-content: center;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
    }
    
    .about-content {
        max-width: 100%;
        margin-bottom: 60px;
        padding-right: 0;
    }
    
    .stats-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
    }
    
    .stat-item {
        flex: 0 0 calc(33.33% - 30px);
        text-align: center;
        border-left: none;
        border-bottom: 4px solid var(--primary-color);
        padding-left: 0;
        padding-bottom: 20px;
    }
    
    .about-image {
        max-width: 80%;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 95;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a.btn {
        display: block;
        width: 100%;
        margin: 15px 0;
        padding: 12px 24px;
    }

    .nav-links li a.btn-primary {
        margin-top: 20px;
        background-color: var(--primary-color);
        color: white;
    }

    .nav-links li a.btn-primary:hover {
        background-color: #004494;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 90;
    }

    .overlay.active {
        display: block;
    }

    .hero-image {
        margin-top: 60px;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 90%;
        height: auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .legal-links a {
        margin: 0 10px;
    }

    .hero {
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .hero-image {
        margin-top: 40px;
    }
    
    .hero-image img {
        max-width: 95%;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .about-image {
        max-width: 100%;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered animations for cards */
.service-cards .card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.service-cards .card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-cards .card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-cards .card:nth-child(2) {
    transition-delay: 0.3s;
}

.service-cards .card:nth-child(3) {
    transition-delay: 0.5s;
}

/* Hero section animations */
.hero-content {
    max-width: 550px;
    padding-right: 20px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(53, 99, 233, 0.1);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(53, 99, 233, 0.1);
    animation: fadeIn 1s ease-out;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: slideUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.6;
    animation: slideUp 1s ease-out 0.2s backwards;
}

.cta-buttons {
    margin-bottom: 0;
    animation: slideUp 1.2s ease-out 0.4s backwards;
}

/* About section animations */
.about-image {
    animation: fadeIn 1.2s ease-out;
}

.about-image.animate-in {
    animation: slideInRight 1s ease-out forwards;
}

.contact-wrapper {
    opacity: 0;
    transform: translateY(20px);
}

.contact-wrapper.animate-in {
    animation: fadeInUp 1s ease-out forwards;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
}

.legal-content .last-updated {
    color: #777;
    margin-bottom: 30px;
    font-style: italic;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.policy-section p, .policy-section ul {
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 50px 0;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
} 