:root {
    --primary-color: #8B5CF6;
    --secondary-color: #C4B5FD;
    --accent-color: #7C3AED;
    --text-color: #1F2937;
    --light-purple: #EDE9FE;
    --white: #ffffff;
    --dark-purple: #4C1D95;
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    --card-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Header & Navigation */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

.account-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
}

.logo-mark {
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

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

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    animation: underlineGrow 1s ease-out forwards;
    animation-delay: 1s;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.vision-quote {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.vision-quote p {
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.5;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.text-muted {
    opacity: 0.6;
}

.text-accent {
    color: var(--primary-color);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.feature-card {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    opacity: 0.7;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--light-purple);
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.section-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-content p {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
}

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

.feature-item {
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    opacity: 0.7;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-section ul a:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 0;
    background: var(--light-purple);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.section-header .section-label {
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.section-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 1rem 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.8;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

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

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.2s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.solution-card:hover .solution-icon {
    transform: scale(1.2) rotate(5deg);
}

.solution-card:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--light-purple);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.solution-card p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-purple);
    border-radius: 12px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--light-purple);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.2s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    opacity: 0.9;
}

.service-features li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 0.5rem;
    line-height: 1;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 6rem 0;
    background: var(--light-purple);
}

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

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.2s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
    color: var(--primary-color);
}

.benefit-card:hover h3 {
    transform: translateX(5px);
    color: var(--primary-color);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--light-purple);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.benefit-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.benefit-details span {
    background: var(--light-purple);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .vision-quote {
        font-size: 1.25rem;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .benefit-card {
        padding: 2rem;
    }
    
    .service-card h3,
    .benefit-card h3 {
        font-size: 1.25rem;
    }
    
    .service-card p,
    .benefit-card p {
        font-size: 1rem;
    }
}

/* Portfolio Page */
.portfolio-hero {
    padding: 6rem 0 4rem;
    background: var(--light-purple);
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background: var(--white);
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.portfolio-grid {
    padding: 4rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.project-info p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    padding: 0.25rem 0.75rem;
    background: var(--light-purple);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
    }
}

/* Pricing Page */
.pricing-hero {
    padding: 6rem 0 4rem;
    background: var(--light-purple);
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-section {
    padding: 4rem 0 6rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--text-color);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.7;
}

.amount.annual {
    display: none;
}

.pricing-toggle input:checked ~ .pricing-grid .amount.monthly {
    display: none;
}

.pricing-toggle input:checked ~ .pricing-grid .amount.annual {
    display: inline;
}

.custom-price {
    font-size: 2rem;
}

.pricing-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.pricing-cta {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.pricing-cta:hover {
    background: var(--dark-purple);
}

.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--light-purple);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background: var(--dark-purple);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

/* About Page Styles */
.about-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.about-story {
    padding: 80px 0;
    background: var(--light-purple);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    color: var(--text-color);
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.story-content p {
    color: var(--text-color);
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.about-values {
    padding: 80px 0;
    background: var(--white);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.about-values h2 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}

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

.value-card {
    background: var(--light-purple);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.5s; }
.value-card:nth-child(2) { animation-delay: 0.7s; }
.value-card:nth-child(3) { animation-delay: 0.9s; }
.value-card:nth-child(4) { animation-delay: 1.1s; }

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease-out;
}

.value-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-color);
    opacity: 0.8;
}

.about-team {
    padding: 80px 0;
    background: var(--light-purple);
}

.about-team h2 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}

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

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.team-member h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.team-member p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Founder Section */
.about-founder {
    padding: 80px 0;
    background: var(--light-purple);
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.about-founder h2 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.founder-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.founder-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.3s ease-out;
}

.founder-image img {
    display: none;
}

.founder-card:hover .founder-image i {
    transform: scale(1.1);
    opacity: 1;
}

.founder-card h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.founder-card .title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.founder-card .role {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
}

.founder-card .bio {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .founder-card {
        padding: 30px;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--light-purple);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-buttons {
        margin: 20px 0;
    }
    
    .btn {
        width: auto;
        justify-content: center;
    }
}

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

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

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

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Prevent animation on page refresh if user has reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* About Page Animations */
.about-hero {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.about-story {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.story-content h2 {
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.story-content p {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.about-values {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.value-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.5s; }
.value-card:nth-child(2) { animation-delay: 0.7s; }
.value-card:nth-child(3) { animation-delay: 0.9s; }
.value-card:nth-child(4) { animation-delay: 1.1s; }

.about-founder {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.founder-card {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Pricing Page Animations */
.pricing-hero {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.pricing-toggle {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.pricing-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.pricing-card:nth-child(1) { animation-delay: 0.5s; }
.pricing-card:nth-child(2) { animation-delay: 0.7s; }
.pricing-card:nth-child(3) { animation-delay: 0.9s; }

.pricing-faq {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.faq-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.5s; }
.faq-item:nth-child(2) { animation-delay: 0.7s; }
.faq-item:nth-child(3) { animation-delay: 0.9s; }
.faq-item:nth-child(4) { animation-delay: 1.1s; }

/* Our Work Page Animations */
.portfolio-hero {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.portfolio-filters {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.project-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.project-card:nth-child(1) { animation-delay: 0.5s; }
.project-card:nth-child(2) { animation-delay: 0.7s; }
.project-card:nth-child(3) { animation-delay: 0.9s; }
.project-card:nth-child(4) { animation-delay: 1.1s; }
.project-card:nth-child(5) { animation-delay: 1.3s; }
.project-card:nth-child(6) { animation-delay: 1.5s; }

/* Hover Animations for All Pages */
.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover .pricing-header h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-card:hover .project-info h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

.value-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

.founder-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.founder-card:hover h3 {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Smooth transitions for hover effects */
.pricing-card, .project-card, .value-card, .founder-card {
    transition: all 0.3s ease-out;
}

.pricing-card h3, .project-card h3, .value-card h3, .founder-card h3 {
    transition: all 0.3s ease-out;
}

.value-card i {
    transition: all 0.3s ease-out;
}

/* Legal Pages Styles */
.legal-section {
    padding: 4rem 0;
    background: var(--white);
}

.legal-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.last-updated {
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

/* Project Image Modal and Overlay */
.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image:hover .image-overlay {
    opacity: 1;
}

.view-image-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.view-image-btn:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    right: 35px;
    top: 15px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: #bbb;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content, #modalCaption {
    animation-name: zoomIn;
    animation-duration: 0.6s;
} 