@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #6366f1;
    --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.form-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
}

.form-header {
    background: var(--bg-gradient);
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.form-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.form-body {
    padding: 40px;
}

.form-control {
    border: 2px solid #eaeaea;
    padding: 12px 15px;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.15);
}

.form-label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}

.form-icon {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.form-icon i {
    margin-right: 10px;
    color: var(--primary-color);
}

.btn-submit {
    background: var(--bg-gradient);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s;
    width: 100%;
    margin-top: 15px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.9);
}

.success-message {
    display: none;
    padding: 50px 30px;
    text-align: center;
    border-radius: 20px;
    background-color: #ecfdf5;
    border: 2px dashed #10b981;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 40px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f7ff;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-info h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    margin-bottom: 12px;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 20px;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #4f46e5;
    --accent-color: #f59e0b;
    --light-bg: #f3f4f6;
    --dark-bg: #1f2937;
    --success-color: #059669;
    --border-radius: 12px;
}

body {
    background-color: var(--light-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #374151;
}

.price-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.price-header h1 {
    font-weight: 700;
    margin-bottom: 15px;
}

.price-header p {
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.price-container {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
}

.price-body {
    padding: 30px;
}

.category-title {
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
}

.special-note {
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 6px;
    margin: 25px 0;
}

.cta-section {
    background-color: #eff6ff;
    padding: 30px;
    text-align: center;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(234, 88, 12, 0.25);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(234, 88, 12, 0.3);
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
    color: white;
}

.benefits-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.price-card {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

.price-card .card-header {
    padding: 20px;
}

.price-card .card-body {
    padding: 30px;
}

.price-card .card-footer {
    background-color: transparent;
    padding: 20px 30px 30px;
    border-top: none;
}

.most-popular {
    position: relative;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tier-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.tier-subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 20px;
}

.tier-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 20px;
}

.feature-header {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-bg);
}

.package-detail {
    margin-top: 10px;
    padding: 15px;
    background-color: #f9fafb;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #4b5563;
}

@media (max-width: 768px) {
    .price-body {
        padding: 20px;
    }
}

.about-container {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin: 40px auto;
}

.about-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 30px;
    color: white;
    text-align: center;
    position: relative;
}

.about-header h1 {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.header-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.about-body {
    padding: 50px 30px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.feature-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.team-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.team-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: #eff6ff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.history-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.history-item:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    z-index: 2;
}

.history-item:after {
    content: '';
    position: absolute;
    left: 10px;
    top: 20px;
    width: 2px;
    height: calc(100% + 10px);
    background-color: #e2e8f0;
    z-index: 1;
}

.history-item:last-child:after {
    display: none;
}

.history-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.history-text {
    color: #64748b;
}

.stat-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
}

.values-card {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.values-title {
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.testimonial-text {
    color: #64748b;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: "";
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    left: -15px;
    top: -20px;
    color: #e2e8f0;
    z-index: 0;
    opacity: 0.5;
}

.client-info {
    display: flex;
    align-items: center;
}

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

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 3px;
}

.client-company {
    color: #64748b;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 50px 30px;
    text-align: center;
    border-radius: 0 0 16px 16px;
}

.cta-title {
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #64748b;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(37, 99, 235, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .about-header,
    .about-body,
    .cta-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .team-img-container {
        height: 200px;
    }
}
