/* ==================== Service Packages Section ==================== */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
    opacity: 0.5;
    pointer-events: none;
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

.packages-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.packages-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002244; /* Brand Deep Navy */
    margin-bottom: 15px;
}

.packages-section .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Package Card */
.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #0079C2; /* Brand Azure Blue */
}

/* Featured Package */
.package-card.featured {
    border: 2px solid #0079C2; /* Brand Azure Blue */
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #0079C2, #002244); /* Brand Azure Blue → Deep Navy */
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 121, 194, 0.4);
}

/* Package Header */
.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0079C2, #002244); /* Brand Azure Blue → Deep Navy */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 121, 194, 0.3);
}

.package-icon i {
    font-size: 2rem;
    color: white;
}

.package-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.package-price .currency {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e40af;
}

.package-period {
    font-size: 0.9rem;
    color: #64748b;
}

/* Package Body */
.package-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #475569;
}

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

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item.highlight {
    background: #f0fdf4;
    padding: 15px;
    border-radius: 10px;
    border: none;
    margin-bottom: 10px;
}

.feature-item.highlight i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Package Footer */
.package-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}

.package-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

.package-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.package-btn i {
    transition: transform 0.3s ease;
}

.package-btn:hover i {
    transform: translateX(5px);
}

.package-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

/* Packages Footer */
.packages-footer {
    margin-top: 60px;
}

.packages-note {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.packages-note i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.packages-note p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.packages-note a {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.packages-note a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Packages Guarantee */
.packages-guarantee {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.guarantee-item i {
    color: #10b981;
    font-size: 1.5rem;
}

.guarantee-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

/* Packages Testimonial */
.packages-testimonial {
    margin-top: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    padding: 40px;
    border-left: 5px solid #3b82f6;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content .fa-quote-left {
    font-size: 2rem;
    color: #3b82f6;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin: 20px 0 20px 40px;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    margin-top: 15px;
    padding-right: 20px;
}

.testimonial-author strong {
    color: #1e40af;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .packages-section .section-title {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
    
    .packages-guarantee {
        flex-direction: column;
        gap: 15px;
    }
    
    .guarantee-item {
        width: 100%;
        justify-content: center;
    }
}

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

.package-card {
    animation: fadeInUp 0.6s ease-out;
}

.package-card:nth-child(1) {
    animation-delay: 0.1s;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.3s;
}
