.packages-cta .btn.btn-outline {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.85) !important;
}

.packages-cta .btn.btn-outline:hover {
    color: #111827 !important;
    background: #ffffff !important;
}
/* Packages Page Styles */

/* New Modern Packages Hero */
.packages-hero-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0b1220 0%, #0f172a 40%, #111827 100%);
    overflow: hidden;
}

.packages-hero-modern .packages-hero-bg { position: absolute; inset: 0; z-index: 1; }
.packages-hero-modern .packages-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridPan 40s linear infinite;
}
.packages-hero-modern .packages-hero-glow {
    position: absolute; inset: -20% -10% -10% -10%;
    background: radial-gradient(800px 400px at 15% 30%, rgba(1,79,182,0.25), transparent 60%),
                radial-gradient(700px 350px at 85% 70%, rgba(152,87,235,0.20), transparent 60%);
    filter: blur(10px);
}
.packages-hero-modern .packages-hero-inner {
    position: relative; z-index: 5;
    width: 100%; text-align: center; padding: 4rem 0; min-height: 60vh;
}
.packages-hero-modern .packages-hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    padding: .5rem 1rem; border-radius: 999px; color: #e5e7eb; margin-bottom: 1rem;
}
.packages-hero-modern .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #60a5fa; box-shadow: 0 0 10px #60a5fa; }
.packages-hero-modern .packages-hero-title {
    font-size: 3.25rem; font-weight: 900; line-height: 1.05; margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #9ec5ff 45%, #c4b5fd 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.packages-hero-modern .packages-hero-subtitle {
    font-size: 1.125rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 1.5rem; max-width: 60ch; margin-left: auto; margin-right: auto;
}
.packages-hero-modern .packages-hero-features { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.packages-hero-modern .packages-hero-features li { list-style: none; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: .5rem .9rem; border-radius: 999px; font-weight: 600; }
.packages-hero-modern .packages-hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.packages-hero-modern .btn-hero-primary, .packages-hero-modern .btn-hero-secondary { display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 1.6rem; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all .3s ease; }
.packages-hero-modern .btn-hero-primary { background: linear-gradient(135deg, #014fb6 0%, #9857eb 100%); color: #fff; box-shadow: 0 10px 30px rgba(1,79,182,.3); }
.packages-hero-modern .btn-hero-secondary { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(8px); }
.packages-hero-modern .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(1,79,182,.4); }
.packages-hero-modern .btn-hero-secondary:hover { transform: translateY(-3px); background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.packages-hero-modern .btn-icon { transition: transform .3s ease; }
.packages-hero-modern .btn-hero-primary:hover .btn-icon { transform: translateX(4px); }
.packages-hero-modern .btn-hero-secondary:hover .btn-icon { transform: translateX(3px); }

@keyframes gridPan { from { background-position: 0 0, 0 0; } to { background-position: 200px 200px, 200px 200px; } }

/* Remove legacy artistic hero (no longer used) */

/* Artistic Background */
.packages-hero-artistic .artistic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Geometric Shapes */
.packages-hero-artistic .geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.packages-hero-artistic .shape {
    position: absolute;
    animation: artisticFloat 20s ease-in-out infinite;
}

.packages-hero-artistic .hexagon-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.packages-hero-artistic .triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid #ffffff;
    top: 20%;
    right: 10%;
    animation-delay: -3s;
}

.packages-hero-artistic .circle-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    border-radius: 50%;
    top: 60%;
    left: 8%;
    animation-delay: -6s;
}

.packages-hero-artistic .diamond-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    transform: rotate(45deg);
    top: 40%;
    right: 15%;
    animation-delay: -9s;
}

.packages-hero-artistic .pentagon-1 {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    top: 70%;
    right: 5%;
    animation-delay: -12s;
}

.packages-hero-artistic .wave-1 {
    width: 150px;
    height: 30px;
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    border-radius: 50px;
    top: 30%;
    left: 20%;
    animation-delay: -15s;
}

.packages-hero-artistic .spiral-1 {
    width: 60px;
    height: 60px;
    background: conic-gradient(from 0deg, #1a1a2e, #16213e, #0f3460, #533483, #7209b7, #1a1a2e);
    border-radius: 50%;
    top: 80%;
    left: 15%;
    animation-delay: -18s;
}

.packages-hero-artistic .star-1 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    top: 15%;
    left: 30%;
    animation-delay: -21s;
}

/* Color Overlays */
.packages-hero-artistic .color-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    animation: colorShift 15s ease-in-out infinite;
}

.packages-hero-artistic .overlay-1 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    animation-delay: 0s;
}

.packages-hero-artistic .overlay-2 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    animation-delay: -5s;
}

.packages-hero-artistic .overlay-3 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    animation-delay: -10s;
}

/* Floating Artistic Elements */
.packages-hero-artistic .artistic-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.packages-hero-artistic .art-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: artisticFloat 15s ease-in-out infinite;
}

.packages-hero-artistic .element-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.packages-hero-artistic .element-2 {
    top: 65%;
    right: 12%;
    animation-delay: -5s;
}

.packages-hero-artistic .element-3 {
    top: 45%;
    right: 8%;
    animation-delay: -10s;
}

/* Hero Content */
.packages-hero-artistic .hero-content-artistic {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.packages-hero-artistic .content-area {
    width: 100%;
    text-align: center;
}

/* Title Section */
.packages-hero-artistic .title-section {
    margin-bottom: 4rem;
}

.packages-hero-artistic .artistic-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.packages-hero-artistic .badge-shape {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.packages-hero-artistic .artistic-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 25%, #edf2f7 50%, #e2e8f0 75%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.packages-hero-artistic .artistic-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Creative Package Cards */
.packages-hero-artistic .creative-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.packages-hero-artistic .package-card-artistic {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.packages-hero-artistic .package-card-artistic:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.packages-hero-artistic .card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.packages-hero-artistic .card-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.packages-hero-artistic .pattern-1 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
}

.packages-hero-artistic .pattern-2 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
}

.packages-hero-artistic .pattern-3 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
}

.packages-hero-artistic .popular-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffffff, #f7fafc, #edf2f7, #e2e8f0);
    border-radius: 25px;
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

.packages-hero-artistic .popular-badge-artistic {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ffffff, #f7fafc);
    color: #1a1a2e;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.packages-hero-artistic .badge-shape {
    width: 12px;
    height: 12px;
    background: #1a1a2e;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.packages-hero-artistic .card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.packages-hero-artistic .package-icon-artistic {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages-hero-artistic .icon-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.packages-hero-artistic .shape-1 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
}

.packages-hero-artistic .shape-2 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
}

.packages-hero-artistic .shape-3 {
    background: linear-gradient(45deg, #ffffff, #f7fafc);
}

.packages-hero-artistic .package-icon-artistic svg {
    position: relative;
    z-index: 2;
    color: #1a1a2e;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.packages-hero-artistic .package-title-artistic {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.packages-hero-artistic .package-features-artistic {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.packages-hero-artistic .feature-artistic {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Action Buttons */
.packages-hero-artistic .artistic-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.packages-hero-artistic .btn-artistic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 2px solid transparent;
}

.packages-hero-artistic .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.packages-hero-artistic .btn-primary-artistic .btn-background {
    background: linear-gradient(45deg, #ffffff, #f7fafc, #edf2f7, #e2e8f0);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
}

.packages-hero-artistic .btn-secondary-artistic .btn-background {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.packages-hero-artistic .btn-artistic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.packages-hero-artistic .btn-artistic:hover .btn-background {
    transform: scale(1.05);
}

.packages-hero-artistic .btn-text {
    position: relative;
    z-index: 2;
    color: #1a1a2e;
}

.packages-hero-artistic .btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    color: #1a1a2e;
}

.packages-hero-artistic .btn-artistic:hover .btn-icon {
    transform: translateX(5px);
}

/* Animations */
@keyframes artisticFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-20px) rotate(5deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg); 
    }
    75% { 
        transform: translateY(-30px) rotate(2deg); 
    }
}

@keyframes colorShift {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-hero-artistic .artistic-title {
        font-size: 3rem;
    }
    
    .packages-hero-artistic .artistic-subtitle {
        font-size: 1.2rem;
    }
    
    .packages-hero-artistic .creative-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .packages-hero-artistic .artistic-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .packages-hero-artistic .btn-artistic {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .packages-hero-artistic .shape {
        transform: scale(0.7);
    }
    
    .packages-hero-artistic .art-element {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .packages-hero-artistic .artistic-title {
        font-size: 2.5rem;
    }
    
    .packages-hero-artistic .artistic-subtitle {
        font-size: 1rem;
    }
    
    .packages-hero-artistic .package-card-artistic {
        padding: 1.5rem;
    }
    
    .packages-hero-artistic .shape {
        transform: scale(0.5);
    }
}

/* Packages Grid Section */
.packages-grid-section {
    padding: 4rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border-color: #014fb6;
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #014fb6, #9857eb);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, #014fb6, #9857eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.package-description {
    color: #64748b;
    line-height: 1.6;
}

.package-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #014fb6;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
}

.price-note {
    font-size: 0.875rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.package-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #475569;
}

.feature-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.package-actions {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #014fb6, #9857eb);
    color: white;
    box-shadow: 0 5px 15px rgba(1, 79, 182, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 79, 182, 0.4);
}

.btn-outline {
    background: transparent;
    color: #014fb6;
    border-color: #014fb6;
}

.btn-outline:hover {
    background: #014fb6;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* No Packages State */
.no-packages {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-packages-icon {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.no-packages h3 {
    font-size: 1.5rem;
    color: #475569;
    margin-bottom: 0.5rem;
}

.no-packages p {
    color: #64748b;
}

/* Custom Package Section */
.custom-package {
    padding: 4rem 0;
    background: #f8fafc;
}

.custom-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.custom-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #475569;
}

.custom-feature svg {
    color: #10b981;
    flex-shrink: 0;
}

.custom-action {
    text-align: center;
}

/* FAQ Section */
.packages-faq {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.faq-accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: #ffffff; border-radius: 14px; box-shadow: 0 6px 18px rgba(2,6,23,0.06); overflow: hidden; border: 1px solid #eef2f7; }
.faq-question { width: 100%; text-align: inherit; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.25rem; background: #ffffff; border: 0; cursor: pointer; font-weight: 700; color: #0f172a; font-size: 1.05rem; }
.faq-question:focus { outline: 3px solid rgba(1,79,182,0.25); outline-offset: 2px; }
.faq-question[aria-expanded="true"] { background: linear-gradient(180deg, #ffffff, #f8fafc); }
.faq-question .faq-icon { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; color: #475569; transition: transform .25s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: #014fb6; }
.faq-answer { padding: 0 1.25rem 1.25rem; color: #475569; line-height: 1.7; }
.faq-answer p { margin: 0; }

.faq-item:hover { box-shadow: 0 10px 26px rgba(2,6,23,0.08); }

/* Packages CTA */
.packages-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #014fb6 0%, #9857eb 100%);
    color: white;
    text-align: center;
}

.packages-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.packages-cta .cta-content p {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.packages-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-hero-modern .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 0;
    }
    
    .packages-hero-modern .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .packages-hero-modern .hero-subtitle-modern {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .packages-hero-modern .hero-features-modern {
        align-items: center;
    }
    
    .packages-hero-modern .hero-actions-modern {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .packages-hero-modern .hero-visual-modern {
        height: 400px;
    }
    
    .packages-hero-modern .package-showcase {
        gap: 0.75rem;
    }
    
    .packages-hero-modern .floating-card {
        display: none;
    }
    
    .packages-hero .hero-title {
        font-size: 2rem;
    }
    
    .packages-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .package-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .custom-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .custom-text h2 {
        font-size: 2rem;
    }
    
    .faq-accordion { padding: 0 0.25rem; }
    
    .packages-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Package Card Animations */
.package-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.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; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }
.package-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
