
:root {
    --primary-color: #2563eb;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.corporate-page {
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-custom {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-actions .btn-outline-primary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
}

.stat-item i {
    font-size: 20px;
    color: #fbbf24;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.rounded-custom {
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    right: -30px;
}

.floating-card.card-2 {
    bottom: 20%;
    left: -30px;
}

.floating-card i {
    font-size: 32px;
    color: var(--primary-color);
}

.floating-card h6 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.floating-card p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--light-color);
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 36px;
    color: #fff;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #ede9fe;
    color: #7c3aed;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fbbf24;
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.category-badge.trending {
    background: #ef4444;
}

.category-content {
    padding: 30px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon.tech {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-icon.consulting {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-icon.agency {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.category-icon.realestate {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.category-icon.manufacturing {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.category-icon i {
    font-size: 28px;
    color: #fff;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.category-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.category-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-features li i {
    color: var(--secondary-color);
    font-size: 12px;
}

.btn-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--light-color);
    color: var(--dark-color);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-category:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-category i {
    transition: transform 0.3s ease;
}

.btn-category:hover i {
    transform: translateX(-3px);
}

/* Features Advanced Section */
.features-advanced {
    padding: 100px 0;
    background: var(--light-color);
}

.feature-image-box {
    position: relative;
}

.feature-image-box img {
    box-shadow: var(--shadow-lg);
}

.feature-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-badge i {
    font-size: 24px;
    color: #fbbf24;
}

.feature-badge span {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
}

.feature-badge.success i {
    color: var(--secondary-color);
}

.feature-content-box {
    padding: 20px;
}

.feature-item-inline {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item-inline:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-inline {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-inline i {
    font-size: 26px;
    color: #fff;
}

.feature-item-inline h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.feature-item-inline p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: 3px solid #fbbf24;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-card.featured .pricing-name {
    color: #fff;
}

.pricing-price {
    margin-bottom: 15px;
}

.pricing-price .currency {
    font-size: 16px;
    vertical-align: super;
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
}

.pricing-price .period {
    font-size: 16px;
    color: #64748b;
}

.pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
    font-size: 15px;
    color: #64748b;
}

.pricing-card.featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 14px;
    color: var(--secondary-color);
}

.pricing-card.featured .pricing-features li i {
    color: #fbbf24;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: #ef4444;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.pricing-card.featured .btn-pricing {
    background: #fff;
    color: var(--primary-color);
}

.pricing-card.featured .btn-pricing:hover {
    background: #fbbf24;
    color: #fff;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
    margin-left: 3px;
}

.testimonial-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 5px 0;
}

.testimonial-author span {
    font-size: 14px;
    color: #64748b;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta {
    padding: 16px 40px;
    background: #fff;
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0 120px;
}

.accordion-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 20px 25px;
    background: #fff;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .floating-card {
        display: none;
    }
    
    .cta-box {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stat-box {
        margin-bottom: 20px;
    }
}


 