/**
 * Falcon Express Frontend Styles
 */

/* Reset and Base Styles */
.fe-quote-form,
.fe-partner-portal,
.fe-business-accounts,
.fe-booking-status {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Form Header */
.fe-form-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #1A3663 0%, #2c5aa0 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fe-form-header h2 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    font-weight: 700;
}

.fe-form-header p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Form Steps */
.fe-form-step {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.fe-form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.fe-form-step h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5em;
    border-bottom: 2px solid #1A3663;
    padding-bottom: 10px;
}

/* Form Rows and Groups */
.fe-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.fe-form-group {
    display: flex;
    flex-direction: column;
}

.fe-form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 0.95em;
}

.fe-form-group input,
.fe-form-group select,
.fe-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.fe-form-group input:focus,
.fe-form-group select:focus,
.fe-form-group textarea:focus {
    outline: none;
    border-color: #1A3663;
    box-shadow: 0 0 0 3px rgba(26, 54, 99, 0.1);
}

.fe-form-group input.fe-error-field {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.fe-form-group small {
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 0.85em;
}

/* Buttons */
.fe-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.fe-btn-primary {
    background: linear-gradient(135deg, #1A3663 0%, #2c5aa0 100%);
    color: white;
}

.fe-btn-primary:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #1A3663 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 99, 0.3);
}

.fe-btn-secondary {
    background: #95a5a6;
    color: white;
}

.fe-btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.fe-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Quote Result */
.fe-quote-result {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.fe-quote-summary h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.fe-quote-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.fe-quote-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
}

.fe-quote-row:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #2c3e50;
}

.fe-partner-discount {
    background: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    border: 1px solid #c3e6cb;
}

/* Checkbox Styling */
.fe-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 15px;
}

.fe-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.fe-checkbox-text {
    font-size: 0.9em;
    line-height: 1.4;
}

/* Success and Error States */
.fe-booking-success,
.fe-booking-error {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.fe-booking-success {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.fe-booking-error {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.fe-success-icon,
.fe-error-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.fe-success-icon {
    color: #28a745;
}

.fe-error-icon {
    color: #dc3545;
}

.fe-booking-details {
    background: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.fe-booking-details p {
    margin: 8px 0;
}

/* Partner Portal Styles */
.fe-partner-portal {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.fe-portal-header {
    background: linear-gradient(135deg, #1A3663 0%, #2c5aa0 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.fe-portal-header h2 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.fe-portal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
}

.fe-stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fe-stat-card:hover {
    transform: translateY(-5px);
}

.fe-stat-card h4 {
    color: #7f8c8d;
    margin-bottom: 10px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fe-stat-value {
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.fe-stat-label {
    color: #7f8c8d;
    font-size: 0.85em;
}

.fe-recent-bookings {
    padding: 30px;
}

.fe-recent-bookings h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.fe-bookings-table {
    overflow-x: auto;
}

.fe-bookings-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fe-bookings-table th,
.fe-bookings-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.fe-bookings-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.fe-bookings-table tr:hover {
    background: #f8f9fa;
}

.fe-portal-actions {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
}

.fe-portal-actions .fe-btn {
    margin: 0 10px;
}

/* Status Indicators */
.fe-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fe-status-new {
    background: #e3f2fd;
    color: #1976d2;
}

.fe-status-confirmed {
    background: #e8f5e8;
    color: #388e3c;
}

.fe-status-assigned {
    background: #fff3e0;
    color: #f57c00;
}

.fe-status-in_transit {
    background: #e1f5fe;
    color: #0277bd;
}

.fe-status-completed {
    background: #e8f5e8;
    color: #388e3c;
}

.fe-status-cancelled {
    background: #ffebee;
    color: #d32f2f;
}

.fe-status-pending {
    background: #fff3e0;
    color: #f57c00;
}

/* Business Accounts - SEO Optimized */
.fe-business-accounts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.fe-hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #1A3663 0%, #2c5aa0 100%);
    color: white;
    border-radius: 15px;
}

.fe-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.fe-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fe-hero-cta .fe-btn-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Same-Day Delivery Section */
.fe-same-day-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
}

.fe-same-day-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.fe-same-day-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.fe-same-day-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.fe-same-day-text h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin: 2rem 0 1rem 0;
}

.fe-same-day-text ul {
    list-style: none;
    padding: 0;
}

.fe-same-day-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #34495e;
}

.fe-same-day-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.fe-same-day-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fe-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fe-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.fe-stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benefits Section */
.fe-benefits-section {
    margin-bottom: 4rem;
}

.fe-benefits-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.fe-benefits-section > p {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fe-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.fe-benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fe-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.fe-benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.fe-benefit-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fe-benefit-item p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1rem;
}

/* Enhanced Coverage Section - 6 Areas */
.fe-coverage-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1A3663 0%, #2c5aa0 100%);
    color: white;
    border-radius: 15px;
}

.fe-coverage-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.fe-coverage-section > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fe-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fe-coverage-region {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.fe-coverage-region:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.fe-coverage-region h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.fe-coverage-region p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.fe-coverage-region strong {
    color: #fff;
    font-weight: 600;
}

.fe-coverage-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #4ade80;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Coverage Summary Section */
.fe-coverage-summary {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fe-coverage-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.fe-coverage-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fe-coverage-benefit {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fe-coverage-benefit h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.fe-coverage-benefit p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Dorset Special Coverage Region */
.fe-dorset-special {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    border: 2px solid #fff !important;
    position: relative;
    overflow: hidden;
}

.fe-dorset-special::before {
    content: "🌟 DORSET SPECIAL";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.fe-dorset-benefits {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fe-dorset-benefits h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fe-dorset-benefits p {
    color: #fff;
    line-height: 1.6;
    font-size: 0.9rem;
    opacity: 0.95;
}

.fe-dorset-benefits strong {
    color: #fff;
    font-weight: 600;
}

/* Enhanced Dorset Focus Section - Stretched & Improved */
.fe-dorset-focus {
    margin-bottom: 4rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(238, 90, 36, 0.3);
}

.fe-dorset-focus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.fe-dorset-focus h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fe-dorset-focus > p {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.95;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.fe-dorset-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.fe-dorset-main h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fe-dorset-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fe-dorset-reason {
    background: rgba(255, 255, 255, 0.18);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fe-dorset-reason:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.fe-dorset-reason h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-weight: 700;
}

.fe-dorset-reason p {
    line-height: 1.7;
    opacity: 0.95;
    font-size: 1rem;
}

/* Dorset Business Advantages */
.fe-dorset-advantages {
    margin-bottom: 3rem;
}

.fe-dorset-advantages h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.fe-dorset-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.fe-dorset-advantage {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.fe-dorset-advantage:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.fe-advantage-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fe-advantage-text {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Dorset Coverage Detail */
.fe-dorset-coverage-detail {
    margin-bottom: 2rem;
}

.fe-dorset-coverage-detail h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.fe-dorset-coverage-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.fe-dorset-area {
    background: rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fe-dorset-area h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fe-dorset-area p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Enhanced Dorset Stats */
.fe-dorset-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.fe-dorset-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fe-dorset-stat:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.fe-dorset-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fe-dorset-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.4;
}

/* Dorset Testimonials */
.fe-dorset-testimonials {
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.fe-dorset-testimonials h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fe-dorset-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fe-dorset-testimonial {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fe-dorset-testimonial:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.fe-testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.95;
}

.fe-testimonial-author {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.fe-testimonial-author strong {
    font-size: 1.1rem;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.fe-testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Enhanced Dorset CTA */
.fe-dorset-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.fe-dorset-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fe-dorset-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.fe-dorset-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fe-dorset-cta-buttons .fe-btn {
    min-width: 250px;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fe-dorset-cta-buttons .fe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.fe-dorset-cta-note {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 600px;
    margin: 0 auto;
}

.fe-dorset-cta-note p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

.fe-dorset-cta-note strong {
    color: #fff;
    font-weight: 700;
}

/* Responsive adjustments for coverage section */
@media (max-width: 768px) {
    .fe-coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .fe-coverage-benefits {
        grid-template-columns: 1fr;
    }
    
    .fe-coverage-section {
        padding: 2rem;
    }
    
    .fe-coverage-section h2 {
        font-size: 2rem;
    }
    
    .fe-dorset-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fe-dorset-focus {
        padding: 2rem;
    }
    
    .fe-dorset-focus h2 {
        font-size: 2rem;
    }
    
    .fe-dorset-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fe-dorset-cta-buttons .fe-btn {
        min-width: 250px;
    }
    
    /* Enhanced responsive for Dorset section */
    .fe-dorset-focus h2 {
        font-size: 2.2rem;
    }
    
    .fe-dorset-focus > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .fe-dorset-main h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .fe-dorset-reasons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fe-dorset-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .fe-dorset-coverage-areas {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fe-dorset-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .fe-dorset-stat {
        padding: 1.5rem 1rem;
    }
    
    .fe-dorset-stat-number {
        font-size: 2.2rem;
    }
    
    .fe-dorset-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fe-dorset-testimonial {
        padding: 2rem;
    }
    
    .fe-dorset-cta {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .fe-dorset-cta h3 {
        font-size: 2rem;
    }
    
    .fe-dorset-cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .fe-dorset-focus {
        padding: 1.5rem;
    }
    
    .fe-dorset-focus h2 {
        font-size: 1.8rem;
    }
    
    .fe-dorset-focus > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .fe-dorset-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .fe-dorset-stats {
        grid-template-columns: 1fr;
    }
    
    .fe-dorset-cta-buttons .fe-btn {
        min-width: 200px;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .fe-dorset-testimonial {
        padding: 1.5rem;
    }
    
    .fe-dorset-testimonial h3 {
        font-size: 1.8rem;
    }
}

/* Business Types Section */
.fe-business-types {
    margin-bottom: 4rem;
}

.fe-business-types h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.fe-business-types > p {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fe-business-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fe-business-type {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1A3663;
}

.fe-business-type h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.fe-business-type p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* FAQ Section */
.fe-faq-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.fe-faq-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.fe-faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fe-faq-item h3 {
    font-size: 1.3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    cursor: pointer;
}

.fe-faq-item p {
    color: #34495e;
    line-height: 1.7;
}

/* CTA Section */
.fe-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1A3663 0%, #2c5aa0 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.fe-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fe-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.fe-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fe-cta-buttons .fe-btn {
    min-width: 200px;
}

/* Enhanced Discount Tiers */
.fe-discount-tiers {
    margin-bottom: 4rem;
    padding: 40px;
    background: white;
}

.fe-discount-tiers h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.fe-discount-tiers > p {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fe-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.fe-tier-card {
    background: linear-gradient(135deg, #1A3663 0%, #2c5aa0 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fe-tier-header {
    font-size: 1.1em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.fe-tier-discount {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.fe-tier-description {
    font-size: 0.85em;
    opacity: 0.8;
}

.fe-discount-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #e8f5e8;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.fe-discount-note p {
    color: #2c3e50;
    margin: 0;
}

/* Enhanced Application Form */
.fe-application-form {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.fe-application-form h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.fe-application-form > p {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fe-hero-section h1 {
        font-size: 2rem;
    }
    
    .fe-same-day-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fe-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .fe-coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .fe-business-types-grid {
        grid-template-columns: 1fr;
    }
    
    .fe-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fe-cta-buttons .fe-btn {
        min-width: 250px;
    }
}

/* Partner Form Styles */
.fe-partner-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Booking Status Styles */
.fe-booking-status {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.fe-booking-status h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2em;
}

.fe-booking-status p {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.fe-status-form {
    max-width: 400px;
    margin: 0 auto;
}

.fe-status-result {
    margin-top: 30px;
    text-align: left;
}

.fe-status-result h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.fe-status-details p {
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.fe-status-details p:last-child {
    border-bottom: none;
}

/* Loading Overlay */
.fe-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fe-loading-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fe-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1A3663;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages */
.fe-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease-out;
}

.fe-message-success {
    background: #28a745;
}

.fe-message-error {
    background: #dc3545;
}

.fe-message-text {
    margin-right: 10px;
}

.fe-message-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    float: right;
    margin-left: 10px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .fe-quote-form,
    .fe-partner-portal,
    .fe-business-accounts,
    .fe-booking-status {
        padding: 15px;
    }
    
    .fe-form-header h2 {
        font-size: 2em;
    }
    
    .fe-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fe-portal-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        padding: 20px;
    }
    
    .fe-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .fe-tiers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .fe-bookings-table {
        font-size: 0.9em;
    }
    
    .fe-bookings-table th,
    .fe-bookings-table td {
        padding: 8px 10px;
    }
    
    .fe-message {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Dorset Advantages Grid - Mobile */
    .fe-dorset-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .fe-dorset-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .fe-form-header {
        padding: 15px;
    }
    
    .fe-form-header h2 {
        font-size: 1.8em;
    }
    
    .fe-form-step {
        padding: 20px;
    }
    
    .fe-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .fe-portal-header,
    .fe-accounts-header {
        padding: 20px;
    }
    
    .fe-portal-header h2,
    .fe-accounts-header h2 {
        font-size: 2em;
    }
    
    /* Dorset Advantages Grid - Small Mobile */
    .fe-dorset-advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .fe-dorset-advantage {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .fe-btn,
    .fe-loading-overlay,
    .fe-message {
        display: none !important;
    }
    
    .fe-quote-form,
    .fe-partner-portal,
    .fe-business-accounts,
    .fe-booking-status {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
