/* Visa Change Page - Normal Sizes with Modal Form */

/* Custom SVG Icon Styles */
.icon-inline {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    display: inline-block;
}

.icon-check {
    width: 18px;
    height: 18px;
    color: var(--color-accent-cyan);
    flex-shrink: 0;
}

.icon-social {
    width: 20px;
    height: 20px;
    color: white;
    transition: color 0.3s ease;
}

.icon-social:hover {
    color: var(--color-accent-cyan);
}

.icon-footer {
    width: 16px;
    height: 16px;
    color: var(--color-accent-cyan);
    vertical-align: middle;
}

.icon-success {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.upload-icon {
    width: 1.8rem;
    height: 1.8rem;
    color: #aaa;
    display: block;
    margin: 0 auto 10px;
    transition: color 0.3s ease;
}

.upload-box:hover .upload-icon {
    color: var(--color-accent-cyan);
}

.upload-box.uploaded .upload-icon {
    color: #28a745;
}

.card-type-badge .icon-inline {
    width: 1.5rem;
    height: 1.5rem;
}

.rule-icon .icon-inline {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.desc-feature .icon-inline {
    width: 1.5rem;
    height: 1.5rem;
}

.description-badge .icon-inline {
    width: 1rem;
    height: 1rem;
}

.visa-card-stamp .icon-inline {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 8px;
}


.visa-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.visa-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0d3a5c7a 60%, #0a254067 100%);
}

.visa-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('visa-hero-bg.webp') center/cover no-repeat;
    opacity: 0.3;
}

.min-vh-hero {
    min-height: calc(85vh - 80px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.visa-badge {
    display: inline-block;
    background: rgba(51, 217, 246, 0.15);
    border: 1px solid var(--color-accent-cyan);
    color: var(--color-accent-cyan);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #bfeefe;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.highlight-item i {
    color: var(--color-accent-cyan);
}

.btn-hero-cta {
    background: linear-gradient(135deg, var(--color-accent-cyan), #1ec4d8);
    color: var(--color-primary-dark);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(51, 217, 246, 0.3);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(51, 217, 246, 0.4);
    color: var(--color-primary-dark);
}

/* Hero Visual - Visa Card */
.hero-visual {
    position: relative;
    z-index: 2;
}

.visa-card-floating {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    width: 350px;
    margin: 0 auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    animation: floatCard 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

.visa-card-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    letter-spacing: 1px;
}

.visa-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visa-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.visa-info-row .label {
    color: #666;
}

.visa-info-row .value {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.visa-card-stamp {
    margin-top: 1.5rem;
    padding: 12px;
    background: rgba(40, 167, 69, 0.1);
    border: 2px dashed #28a745;
    border-radius: 10px;
    text-align: center;
    color: #28a745;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
}

.visa-card-stamp i {
    margin-right: 8px;
}

/* Pricing Section */
.visa-pricing {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbfc 0%, #eef5f8 100%);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(17, 42, 70, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(17, 42, 70, 0.15);
    border-color: var(--color-accent-cyan);
}

.price-card.popular {
    border-color: var(--color-accent-cyan);
    background: linear-gradient(180deg, #f0fcff 0%, white 30%);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-accent-cyan), #1ec4d8);
    color: var(--color-primary-dark);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(51, 217, 246, 0.3);
}

.card-type-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.card-type-badge.bus {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.card-type-badge.flight {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.card-duration {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    background: rgba(51, 217, 246, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.card-price small {
    font-size: 0.9rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 3px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.card-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li i {
    color: var(--color-accent-cyan);
}

.btn-select {
    background: var(--color-primary-dark);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    border: none;
}

.btn-select:hover {
    background: #1a3c5e;
    color: var(--color-accent-cyan);
}

/* Rules Section */
.visa-rules {
    padding: 80px 0;
    background: white;
}

.rule-card {
    background: #f8fbfc;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

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

.rule-card.important {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 1px solid #ffc107;
}

.rule-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary-dark), #1a3c5e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.rule-icon i {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
}

.rule-card.important .rule-icon {
    background: linear-gradient(135deg, #ffc107, #ffb300);
}

.rule-card.important .rule-icon i {
    color: var(--color-primary-dark);
}

.rule-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.rule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.rule-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent-cyan);
    font-weight: bold;
}

.rule-card.important ul li::before {
    color: #ffc107;
}

/* CTA Section */
.visa-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(185, 218, 255, 0.245), rgba(39, 88, 137, 0.365)), url('footer-top.webp') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visa-cta h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.visa-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: white;
    transform: translateY(-3px);
}

.btn-call {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}


.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.btn-inquiry {
    background: linear-gradient(135deg, var(--color-accent-cyan), #1ec4d8);
    color: var(--color-primary-dark);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(51, 217, 246, 0.3);
}

.btn-inquiry:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(51, 217, 246, 0.4);
    color: var(--color-primary-dark);
}

/* Application Modal */
#applicationModal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

#applicationModal .modal-header {
    background: linear-gradient(135deg, var(--color-primary-dark), #1a3c5e);
    color: white;
    padding: 1.5rem 2rem;
    border: none;
}

#applicationModal .modal-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #edfeffe0;
}

.pkg-tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.pkg-type-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.pkg-duration-tag {
    background: var(--color-accent-cyan);
    color: var(--color-primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pkg-price-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    display: none;
}

#applicationModal .modal-body {
    padding: 2rem;
}

#applicationModal .modal-footer {
    border-top: 1px solid #eee;
    padding: 1.5rem 2rem;
}

.btn-close {
    filter: invert(1);
}

/* Underline Style Input */
.form-floating-line {
    position: relative;
    margin-bottom: 0.5rem;
}

.form-floating-line input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-floating-line input:focus {
    border-bottom-color: var(--color-accent-cyan);
}

.form-floating-line label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 0.9rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-floating-line input:focus+label,
.form-floating-line input:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--color-primary-dark);
}

/* Nationality Suggestions */
.nationality-wrapper {
    position: relative;
}

.nationality-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.nationality-suggestions.show {
    display: block;
}

.nationality-item {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.nationality-item:hover {
    background: rgba(51, 217, 246, 0.1);
}

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

/* Upload Section */
.upload-section {
    background: #f8fbfc;
    border-radius: 15px;
    padding: 1.5rem;
}

.upload-section h6 {
    font-size: 1rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.upload-box {
    background: white;
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-box:hover {
    border-color: var(--color-accent-cyan);
    background: rgba(51, 217, 246, 0.03);
}

.upload-box.uploaded {
    border-color: #28a745;
    border-style: solid;
    background: rgba(40, 167, 69, 0.05);
}

.upload-box input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.upload-box i {
    font-size: 1.8rem;
    color: #aaa;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.upload-box:hover i {
    color: var(--color-accent-cyan);
}

.upload-box.uploaded i {
    color: #28a745;
}

.upload-box .upload-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 5px;
}

.upload-box .upload-status {
    font-size: 0.8rem;
    color: #888;
}

.upload-box.uploaded .upload-status {
    color: #28a745;
}

.upload-box .upload-preview {
    margin-top: 10px;
}

.upload-box .upload-preview img {
    max-width: 60px;
    max-height: 50px;
    border-radius: 5px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--color-primary-dark), #1a3c5e);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 42, 70, 0.3);
    color: var(--color-accent-cyan);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Modal */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

#successModal h3 {
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

/* Flatpickr Custom */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.flatpickr-months .flatpickr-month {
    background: var(--color-primary-dark);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.flatpickr-current-month {
    color: white;
}

.flatpickr-weekdays {
    background: var(--color-primary-dark);
}

span.flatpickr-weekday {
    color: var(--color-accent-cyan) !important;
}

.flatpickr-day.selected,
.flatpickr-day:hover {
    background: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    color: var(--color-accent-cyan) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .visa-card-floating {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .visa-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .min-vh-hero {
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .visa-pricing,
    .visa-rules {
        padding: 60px 0;
    }

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

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp,
    .btn-call {
        width: 250px;
        justify-content: center;
    }

    #applicationModal .modal-dialog {
        margin: 10px;
    }

    .reference-row {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* Reference Number Row - Simple Inline Style */
.reference-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    margin: 10px 0;
}

.reference-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.reference-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.copy-ref-btn {
    background: var(--color-primary-dark);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.copy-ref-btn:hover {
    background: var(--color-accent-cyan);
    color: var(--color-primary-dark);
    transform: scale(1.05);
}

.copy-ref-btn.copied {
    background: #28a745;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #1da851;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Specific adjustment for mobile to avoid covering content */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* ===== Why Choose Us Description Section ===== */
.visa-description {
    padding: 60px 0;
    background: linear-gradient(180deg, #f0f8ff 0%, #e8f4fc 100%);
}

.description-box {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(17, 42, 70, 0.1);
    position: relative;
    overflow: hidden;
}

.description-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, var(--color-accent-cyan));
}

.description-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff9e6, #fff3cc);
    border: 1px solid #ffc107;
    color: #856404;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.description-badge i {
    color: #ffc107;
}

.description-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.description-box .lead-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
}

.description-box .lead-text strong {
    color: var(--color-primary-dark);
}

.description-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.desc-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fbfc, #f0f6f9);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.desc-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17, 42, 70, 0.1);
}

.desc-feature i {
    font-size: 2rem;
    color: var(--color-accent-cyan);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary-dark), #1a3c5e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desc-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.3rem;
}

.desc-feature p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 1rem;
    animation: urgencyPulse 2s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.urgency-banner:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    color: white;
}

.urgency-banner i {
    font-size: 1.3rem;
    animation: fireWiggle 0.5s ease-in-out infinite;
}

@keyframes urgencyPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes fireWiggle {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

/* ===== Offer Card Styling ===== */
.price-card.offer-card {
    border: 3px solid #ff6b6b;
    background: linear-gradient(180deg, #fff5f5 0%, #ffecec 30%, white 100%);
    position: relative;
    overflow: visible;
}

.price-card.offer-card:hover {
    border-color: #ee5a5a;
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.25);
}

.offer-ribbon {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    animation: ribbonBounce 1s ease-in-out infinite;
    z-index: 5;
}

@keyframes ribbonBounce {

    0%,
    100% {
        transform: scale(1) rotate(-3deg);
    }

    50% {
        transform: scale(1.05) rotate(0deg);
    }
}

.card-price-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    position: relative;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #28a745;
    text-shadow: 0 2px 10px rgba(40, 167, 69, 0.2);
}

.new-price small {
    font-size: 0.9rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 3px;
}

.savings-tag {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 8px;
    animation: savingsPulse 1.5s ease-in-out infinite;
}

@keyframes savingsPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.5);
    }
}

.limited-time {
    background: linear-gradient(135deg, #fff9e6, #fff3cc);
    color: #856404;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.limited-time i {
    color: #ffc107 !important;
    animation: clockTick 1s ease-in-out infinite;
}

@keyframes clockTick {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }
}

.btn-select.btn-offer {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-weight: 700;
    padding: 14px 30px;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.btn-select.btn-offer:hover {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.price-card.offer-card .card-features li i.fa-gift {
    color: #ff6b6b !important;
}

/* Description section responsive */
@media (max-width: 991px) {
    .description-features {
        grid-template-columns: 1fr;
    }

    .description-box {
        padding: 2rem;
    }

    .description-box h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .visa-description {
        padding: 40px 0;
    }

    .description-box {
        padding: 1.5rem;
    }

    .desc-feature {
        padding: 1rem;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .offer-ribbon {
        left: 50%;
        transform: translateX(-50%);
        top: -12px;
    }

    @keyframes ribbonBounce {

        0%,
        100% {
            transform: translateX(-50%) scale(1);
        }

        50% {
            transform: translateX(-50%) scale(1.05);
        }
    }
}
