/* Tennessee Wireless - Modern CSS Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    /* Original size via padding within container */
    padding: 1.5rem 0;
    /* background: #ffffff;
    color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.header::before {
    /* No background layers for header logo-only design */
    content: none;
}

.header::after {
    content: none;
}

/* Header overlay content container */
.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 1rem;
}

/* Header logo only */
.header-logo {
    height: 128px;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.header-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
}

/* Progress Bar */
.progress-container {
    background: white;
    padding: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.progress-step.active .step-label {
    color: #3b82f6;
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: #10b981;
    color: white;
}

.progress-step.completed .step-label {
    color: #10b981;
}

/* Promotional Banner */
.promotional-banner {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.promo-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.promo-content p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.promo-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.promo-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-option input[type="checkbox"] {
    display: none;
}

.promo-option input[type="checkbox"]:checked + .promo-checkbox {
    background: white;
    color: #f59e0b;
}

.promo-option input[type="checkbox"]:checked + .promo-checkbox::after {
    content: "✓";
    font-weight: bold;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.step-section {
    display: none;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-section.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Address Form */
.address-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e1e8ed;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.address-suggestion {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f4;
}

.address-suggestion:hover {
    background-color: #f8f9fa;
}

.address-suggestion:last-child {
    border-bottom: none;
}

/* Map */
.map-container {
    margin: 2rem 0;
    position: relative;
}

.map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 2px solid #e1e8ed;
}

.map-instruction {
    text-align: center;
    margin-top: 0.5rem;
    color: #666;
    font-style: italic;
}

/* Address Form Actions */
.address-form-actions {
    text-align: right;
    margin-top: 2rem;
}

/* Address Result */
.address-result {
    margin-top: 2rem;
}

.result-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    color: #155724;
}

.result-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.service-available-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-available-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #155724;
    font-weight: 700;
}

.service-available-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #155724;
}

.service-available-actions {
    text-align: right;
    padding-top: 1rem;
    border-top: 1px solid rgba(21, 87, 36, 0.2);
}

.notification-form {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Theme notification email like address box */
#notification-email {
    width: 320px;
    padding: 12px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#notification-email:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#notification-error {
    margin-top: 0.5rem;
}

.notification-form input {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-card:hover {
    border-color: #3b82f6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card.selected {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.package-card.selected::before {
    transform: scaleX(1);
}

.package-card.popular {
    border-color: #f59e0b;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.package-card.clickable {
    user-select: none;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.package-selection-indicator {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.package-card:hover .package-selection-indicator {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.package-card.selected .package-selection-indicator {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.selection-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.package-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.package-speed {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: #f0f9ff;
    border-radius: 20px;
    display: inline-block;
}

.package-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: #666;
}

.package-features li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Addon Section */
.addon-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.addon-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.addon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
}

.addon-info h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.addon-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.addon-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3b82f6;
}

/* Install Options */
.install-options-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.install-options-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.install-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.install-option-card {
    display: block;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.install-option-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.install-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.install-option-card input[type="radio"]:checked + .option-content {
    color: #3b82f6;
}

.install-option-card input[type="radio"]:checked {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.install-option-card:has(input[type="radio"]:checked) {
    border-color: #3b82f6;
    background: #f0f9ff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.option-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.option-content p {
    color: #666;
    margin-bottom: 1rem;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

/* Installation Note */
.installation-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

/* Installation Dates Grid */
.installation-dates-container {
    margin-bottom: 1rem;
}

.installation-dates-grid {
    display: grid;
    grid-template-columns: 1fr; /* one card per row */
    gap: 1rem;
    margin-top: 1rem;
}

.installation-date-option {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

/* New Day Card Styles */
.installation-day-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.installation-day-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 6px 16px rgba(59,130,246,0.12);
}

.installation-day-header {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

/* Three-column row: Day | Morning | Afternoon */
.day-grid {
    display: grid;
    grid-template-columns: 1fr 160px 160px; /* narrower right columns */
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
}

.slot-col {
    display: flex;
    justify-content: flex-start; /* keep checkbox and text next to each other */
    align-items: center;
    gap: 8px;
    padding: 6px 10px; /* a little narrower */
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    background: #ffffff;
    cursor: pointer;
}

/* When checkbox is checked, turn bubble blue and slot text white */
.slot-col .slot-checkbox:checked + .slot-text {
    color: #ffffff;
}
.slot-col input[type="checkbox"].slot-checkbox:checked {
    background: #1d4ed8; /* blue-700 */
    border-color: #1d4ed8;
}
/* Center the checkmark inside the square */
.slot-col input[type="checkbox"].slot-checkbox:checked::after {
    width: 6px;                 /* tweak to taste */
    height: 10px;               /* tweak to taste */
    border: solid #fff;
    border-width: 0 3px 3px 0;
  }

/* Remove generic input focus ring behaviors for these checkboxes */
.slot-col input[type="checkbox"].slot-checkbox:focus {
    outline: none;
    box-shadow: none;
}

/* Also tint the slot-col background when selected for full-bubble effect */
.slot-col:has(.slot-checkbox:checked) {
    background: #3b82f6; /* blue-500 */
    border-color: #3b82f6;
}

@media (max-width: 640px) {
    .day-grid {
        grid-template-columns: 1fr; /* stack on small screens */
        gap: 8px;
    }
    .slot-col {
        justify-content: space-between;
    }
}

/* Slot rows: text on left, checkbox on right */
.slot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.slot-row:hover {
    background: #f0f9ff;
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59,130,246,0.12);
}

.slot-text {
    color: #1f2937;
    font-weight: 600;
    line-height: 20px;  /* match checkbox height for even alignment */
    display: inline-block;
    padding-left: 10px;
}

/* Custom checkbox styling */
.slot-col input[type="checkbox"].slot-checkbox {

    width: 20px;
    transform: scale(1.5);
    border: 2px solid #94a3b8; /* slate-400 */

}

.toggle-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 9999px;
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    background: #fafafa;
}

.toggle-chip input {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.toggle-chip input:checked {
    background: #3b82f6;
    border-color: #3b82f6;
}

.toggle-chip input:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.toggle-chip:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

@media (max-width: 480px) {
    .am-pm-toggle {
        flex-direction: column;
        align-items: flex-start;
    }
}

.installation-date-option:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.installation-date-option input[type="checkbox"] {
    display: none;
}

.installation-date-option input[type="checkbox"]:checked + .date-content {
    color: #3b82f6;
    font-weight: 600;
}

.installation-date-option input[type="checkbox"]:checked {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.date-content {
    font-size: 0.9rem;
    line-height: 1.4;
}

.date-day {
    font-weight: 600;
    color: #2c3e50;
}

.date-time {
    color: #666;
    font-size: 0.8rem;
}

/* Notification Success */
.notification-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.notification-success h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

/* Estimated Bill */
.estimated-bill {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #10b981;
}

.estimated-bill h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bill-breakdown {
    display: grid;
    gap: 0.5rem;
}

.bill-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.bill-item:last-child,
.bill-item.total-due {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    border-top: 2px solid #3b82f6;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.bill-label {
    color: #666;
}

.bill-amount {
    font-weight: 600;
    color: #2c3e50;
}

/* Package Actions */
.package-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

/* Textarea */
textarea {
    width: 100%;
    padding: 12px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.addon-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.addon-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

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

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

input:checked + .toggle-slider {
    background-color: #27ae60;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Package Summary */
.package-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.package-summary h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Customer Form */
.customer-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

/* Error Messages */
.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.form-group.error input,
.form-group.error select {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group.error .error-message {
    display: block;
}

/* Form Error Message */
.form-error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Success and Error Messages */
.success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.notification-form .error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid #e5e7eb;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    font-weight: 600;
}

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

.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    font-weight: 600;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Success Section */
.success-content {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-content h2 {
    color: #27ae60;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-radius: 10px;
}

.footer a {
    color: #3498db;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-2 {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .step-section {
        padding: 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card.popular {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .notification-form {
        flex-direction: column;
        align-items: center;
    }
    
    .addon-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .step-header h2 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
