:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --primary-light: rgba(231, 76, 60, 0.08);
    --text: #2c3e50;
    --text-light: #777;
    --light: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark: #1a1a1a;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light-gray);
}

.pricing-section {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 2px;
    margin-bottom: 40px;
}

.package-builder-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 25px;
}

.pricing-accordion {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.pricing-accordion.animated {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item {
    border-bottom: 1px solid var(--medium-gray);
    transition: var(--transition);
}

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

.accordion-item.featured {
    background-color: var(--primary-light);
    position: relative;
}

.accordion-item.active {
    background-color: rgb(255, 252, 247);
}

.accordion-header {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.accordion-item.active .accordion-header {
    padding-bottom: 15px;
}

.tier-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-info {
    margin-top: 30px;
    flex: 1;
    min-width: 100%;
    padding-right: 0;
    margin-bottom: 15px;
}

.tier-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    transition: var(--transition);
}

.accordion-item.active .tier-info h3 {
    color: var(--primary);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 5px;
}

.price-suffix {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.tier-summary {
    flex: 1;
    min-width: 100%;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0;
    margin-bottom: 15px;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.toggle-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.accordion-item.active .toggle-circle {
    background-color: var(--primary);
}

.toggle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: var(--transition);
    transform: rotate(180deg);
}

.toggle-arrow img {
    width: 100%;
    height: 100%;
}

.accordion-item.active .toggle-arrow {
    transform: rotate(0deg);
}

.accordion-item.active .toggle-arrow img {
    filter: brightness(0) invert(100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px 15px;
    border-bottom: 1px dashed var(--medium-gray);
    margin-bottom: 15px;
    gap: 10px;
}

.highlight-item {
    text-align: center;
    padding: 10px;
    min-width: calc(50% - 10px);
    flex: 1 0 auto;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.package-details {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-bottom: 15px;
}

.details-column {
    flex: 1;
    min-width: 100%;
    padding: 10px;
}

.details-column h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.details-column h4 i {
    margin-right: 8px;
    color: var(--primary);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text);
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.feature-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.cta-container {
    padding: 15px 20px 25px;
    text-align: center;
}

.btn-pricing {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-pricing:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Package Builder Styles */
.builder-steps {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    position: relative;
}

.builder-steps:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    height: calc(100% - 40px);
    width: 2px;
    background-color: #f0f0f0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: left;
    padding-left: 50px;
    padding-top: 10px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.step:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step:nth-child(1):before { content: '1'; }
.step:nth-child(2):before { content: '2'; }
.step:nth-child(3):before { content: '3'; }

.step.active {
    color: var(--primary);
    font-weight: 600;
}

.step.active:before {
    background-color: var(--primary);
    color: white;
}

.builder-step {
    display: none;
}

.builder-step.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.function-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.function-card {
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.function-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
}

.function-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.function-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

/* Switch styles */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(23px);
}

.option-group {
    margin-bottom: 12px;
}

.option-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.option-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding: 8px 12px;
    padding-right: 35px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    background-color: white;
    font-size: 0.9rem;
    width: 100%;
}

.builder-navigation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.btn-prev, .btn-next, .btn-submit {
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-prev {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    order: 1;
}

.btn-prev:hover {
    background-color: #f9f9f9;
}

.btn-next, .btn-submit {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    order: 2;
}

.btn-next:hover, .btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.coverage-summary {
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.summary-header {
    background-color: #f9f9f9;
    padding: 12px 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.summary-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

.summary-content {
    padding: 15px;
}

.coverage-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--medium-gray);
}

.coverage-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.coverage-item h5 {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: var(--dark);
}

.coverage-item ul {
    list-style: none;
    padding-left: 20px;
    margin: 0;
}

.coverage-item li {
    padding: 4px 0;
    padding-left: 15px;
    position: relative;
    font-size: 0.9rem;
}

.coverage-item li:before {
    content: '•';
    position: absolute;
    left: -10px;
    color: var(--primary);
    font-weight: bold;
    text-align: center;
}

.coverage-total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--primary);
}

.coverage-total h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.addon-options {
    margin-bottom: 25px;
}

.addon-options h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.addon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.addon-card {
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    padding: 12px;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--primary);
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.1);
}

.addon-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
}

.addon-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 18px;
    width: 18px;
    background-color: white;
    border: 1px solid var(--medium-gray);
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0;
}

.addon-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.addon-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.addon-title {
    font-weight: 500;
    flex-grow: 1;
    font-size: 0.95rem;
}

.addon-price {
    color: var(--primary);
    font-weight: 600;
    margin-left: 10px;
    font-size: 0.9rem;
}

.addon-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 5px 0 0 28px;
}

.final-package {
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.package-details-final {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.details-column {
    flex: 1;
    min-width: 100%;
    padding: 10px;
}

.details-column h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.details-column h4 i {
    margin-right: 8px;
    color: var(--primary);
}

.selected-events, .coverage-list {
    list-style: none;
    padding-left: 0;
}

.selected-events li, .coverage-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.price-summary {
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 15px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.price-line.addons {
    border-bottom: 1px dashed var(--medium-gray);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.price-line.total {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.verification-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.verification-form .form-group {
    margin-bottom: 15px;
}

.verification-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.verification-form input[type="text"],
.verification-form input[type="tel"],
.verification-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.verification-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.mobile-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-input-group select {
    flex: 0 0 auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.mobile-input-group input {
    flex: 1;
    width: 100%;
}

.btn-otp {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-otp:hover {
    background: var(--primary-dark);
}

.btn-otp:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.otp-group {
    margin-top: 20px;
}

.otp-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.otp-input-group input {
    flex: 1;
    text-align: center;
    letter-spacing: 5px;
    font-size: 1rem;
    padding: 10px;
}

.btn-verify {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-verify:hover {
    background: #218838;
}

.btn-verify:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.otp-timer {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #218838;
    text-align: center;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.85rem;
    color: #b60303;
    margin-top: 15px;
}

.terms-checkbox input {
    margin-right: 10px;
    margin-top: 3px;
}

.verification-status {
    margin-top: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.alert {
    padding: 10px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.alert i {
    margin-right: 8px;
    font-size: 1rem;
}

.alert.success {
    background: #d4edda;
    color: #155724;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
}

.user-details-confirm {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--primary);
}

.user-details-confirm h4 {
    margin-top: 0;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.user-details-confirm p {
    margin: 6px 0;
    font-size: 0.95rem;
}

.booking-success {
    text-align: center;
    padding: 30px 15px;
}

.booking-success i {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 15px;
}

.booking-success h3 {
    color: #28a745;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.booking-success p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #555;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.verification-success {
    animation: fadeIn 0.5s ease-out forwards;
}

.verification-success i {
    animation: scaleIn 0.5s ease-out forwards, pulse 1s ease-in-out 0.5s 2;
}

.final-package {
    animation: fadeIn 0.5s ease-out forwards;
}

.verification-container.hide {
    animation: fadeOut 0.5s ease-out forwards;
}

.progress-fill {
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.verification-error {
    background: #ffebee;
    color: #c62828;
    padding: 8px;
    border-radius: 4px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.verification-error i {
    font-size: 1rem;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.2rem;
    }

    .pricing-container {
        margin-bottom: 50px;
    }

    .package-builder-container {
        padding: 30px;
    }

    .accordion-header {
        padding: 25px 30px;
        flex-wrap: nowrap;
    }

    .tier-info {
        margin-top: 0;
        min-width: 250px;
        padding-right: 20px;
        margin-bottom: 0;
    }

    .tier-info h3 {
        font-size: 1.5rem;
    }

    .price-tag {
        font-size: 2rem;
    }

    .tier-summary {
        min-width: auto;
        padding: 0 20px;
        margin-bottom: 0;
    }

    .accordion-toggle {
        margin-left: 0;
    }

    .package-highlights {
        padding: 0 30px 20px;
        justify-content: space-around;
        gap: 0;
    }

    .highlight-item {
        min-width: 180px;
        padding: 15px;
    }

    .highlight-item i {
        font-size: 1.8rem;
    }

    .highlight-item span {
        font-size: 0.95rem;
    }

    .package-details {
        padding: 0 30px;
        margin-bottom: 20px;
    }

    .details-column {
        min-width: 50%;
        padding: 15px;
    }

    .details-column h4 {
        font-size: 1.1rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }

    .cta-container {
        padding: 20px 30px 30px;
    }

    .btn-pricing {
        padding: 14px 35px;
        font-size: 1rem;
    }

    /* Builder Steps */
    .builder-steps {
        flex-direction: row;
        justify-content: space-between;
    }

    .builder-steps:before {
        top: 20px;
        left: 0;
        right: 0;
        height: 2px;
        width: 100%;
    }

    .step {
        text-align: center;
        padding-left: 0;
        padding-top: 50px;
        margin-bottom: 0;
    }

    .step:before {
        left: 50%;
        transform: translateX(-50%);
    }

    .function-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }

    .function-header h4 {
        font-size: 1.1rem;
    }

    .builder-navigation {
        flex-direction: row;
        justify-content: space-between;
    }

    .btn-prev, .btn-next, .btn-submit {
        width: auto;
        order: 0;
    }

    .addon-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .mobile-input-group {
        flex-direction: row;
    }

    .mobile-input-group select {
        width: auto;
    }

    .btn-otp {
        width: auto;
        margin-top: 0;
        margin-left: 10px;
    }

    .otp-input-group {
        flex-direction: row;
    }

    .btn-verify {
        width: auto;
        margin-top: 0;
        margin-left: 10px;
    }
}

/* Large Desktop Styles */
@media (min-width: 992px) {
    .section-header h2 {
        font-size: 2.8rem;
    }

    .accordion-header {
        padding: 25px 40px;
    }

    .tier-info {
        min-width: 300px;
    }

    .package-highlights {
        padding: 0 40px 20px;
    }

    .package-details {
        padding: 0 40px;
    }

    .details-column {
        min-width: 300px;
    }

    .cta-container {
        padding: 20px 40px 30px;
    }
}

.booking-confirmation {
    padding: 3rem 0;
    background-color: #f9f9f9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
}

.booking-confirmation .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.confirmation-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.4s ease;
    max-width: 1000px;
    margin: auto;
}

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

.confirmation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.confirmation-header {
    background: linear-gradient(135deg, #db1200 0%, #b70000 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.confirmation-header i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    animation: bounce 1s ease infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.confirmation-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.confirmation-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Body Section */
.confirmation-body {
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
}

.quote-summary {
    flex: 2;
    min-width: 0;
}

.user-details {
    flex: 1;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1.5rem;
    align-self: flex-start;
    min-width: 280px;
}

.quote-summary h3,
.user-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111;
    padding-bottom: 0.5rem;
    position: relative;
}

.quote-summary h3::after,
.user-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #db1200, #b70000);
}

.quote-id {
    background: #f5f5f5;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-id span {
    font-weight: 600;
    color: #555;
}

.quote-id strong {
    font-size: 1.1rem;
    color: #db1200;
}

.selected-events,
.selected-addons {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}

.selected-events li,
.selected-addons li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.price-summary {
    background: #fafafa;
    border-radius: 8px;
    padding: 1.2rem;
    font-size: 1rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.price-line.total {
    font-weight: 700;
    color: #db1200;
    border-top: 2px solid #eee;
    margin-top: 0.5rem;
    padding-top: 0.8rem;
}

/* User Details */
.user-details p {
    margin: 0.6rem 0;
    color: #555;
}

.user-details p strong {
    color: #111;
    font-weight: 600;
    display: inline-block;
    min-width: 70px;
}

/* Buttons */
.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 2.5rem 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
    border: 2px solid transparent;
    font-size: 1rem;
    min-width: 180px;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #db1200, #b70000);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(219, 18, 0, 0.35);
}

.btn-secondary {
    background: #111;
    color: white;
}

.btn-secondary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid #db1200;
    color: #db1200;
}

.btn-outline:hover {
    background: #db1200;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .confirmation-body {
        flex-direction: column;
    }

    .confirmation-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .confirmation-header {
        padding: 2rem 1.5rem;
    }

    .confirmation-header h2 {
        font-size: 1.8rem;
    }

    .confirmation-body {
        padding: 1.5rem;
    }

    .btn {
        width: 100%;
    }

    .confirmation-actions {
        flex-direction: column;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .confirmation-header i {
        font-size: 3rem;
    }

    .confirmation-header h2 {
        font-size: 1.6rem;
    }
}

/* OTP Modal Styles */
.otp-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.otp-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-input-group input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
}

.otp-input-group input:focus {
    border-color: #db1200;
    outline: none;
    box-shadow: 0 0 5px rgba(219, 18, 0, 0.3);
}

.otp-timer {
    font-size: 0.9rem;
    color: #666;
    margin: 10px 0;
}

.otp-error {
    color: #db1200;
    margin-top: 15px;
    display: none;
}

/* Verification Error Styles */
.verification-error {
    background: #ffebee;
    border: 1px solid #db1200;
    color: #db1200;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verification-error i {
    font-size: 1.2rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(10px); }
}

.package-builder-toggle {
    text-align: center;
    margin: 40px 0;
}

.toggle-btn {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 80px;
    background: linear-gradient(135deg, #db1200 0%, #b70000 100%);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(219, 18, 0, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
}

.toggle-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(219, 18, 0, 0.4);
}

.toggle-btn-inner {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 280px;
    height: 60px;
    background: white;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #db1200;
    transition: all 0.4s ease;
}

.toggle-btn.active {
    background: #111;
}

.toggle-btn.active .toggle-btn-inner {
    transform: translateX(0);
    color: #111;
}

.package-builder-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.package-builder-overlay h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.package-builder-container {
    display: none;
}

.package-builder-container.active {
    display: block;
}

.pricing-section.active .pricing-container {
    display: none;
}

/* OTP Verification Styles */
.otp-timer {
    font-size: 0.9rem;
    color: #666;
}

#otpTimer {
    color: #db1200;
    font-weight: bold;
}

#emailVerificationError {
    display: none;
}

.modal-header {
    background: linear-gradient(135deg, #db1200 0%, #b70000 100%);
    color: white;
}

.modal-title {
    font-weight: 600;
}

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