/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    font-feature-settings: 'kern' 1, 'liga' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}



@keyframes float-bg {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Site Header */
.site-header {
    background: #FAFAFA;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.logo-section {
    flex: 0 0 auto;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.tagline-section {
    flex: 0 0 auto;
}

.tagline {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.tagline:hover {
    opacity: 0.8;
}

/* Marketing Section */
.marketing-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.marketing-section::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.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.marketing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.marketing-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(30, 64, 175, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.video-placeholder:hover::before {
    transform: translateX(100%);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
    color: #1e40af;
}

.video-placeholder:hover i {
    transform: scale(1.1);
}

.video-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #1e40af;
}

.marketing-info h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.marketing-info p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.marketing-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.marketing-actions .btn-primary,
.marketing-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.marketing-actions .btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.4);
    text-decoration: none;
}

.marketing-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    text-decoration: none;
    color: white;
}

.marketing-actions .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
}

.marketing-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 48px;
}

.section-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Sports & Coverage Section */
.sports-coverage-section {
    padding: 0 0 80px 0;
    min-height: 100vh;
}

.sports-coverage-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    margin-top: 48px;
}

.sports-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.quote-sidebar {
    position: sticky;
    top: 140px; /* Header height (~120px) + margin */
    height: fit-content;
}

/* Sport Coverage Cards */
.sport-coverage-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.sport-coverage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.sport-coverage-card.selected {
    border-color: #2563eb;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.25), 0 10px 10px -5px rgba(37, 99, 235, 0.1);
}

.sport-coverage-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    z-index: 10;
}

/* Sport Header */
.sport-header {
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

.sport-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.sport-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);

}

.sport-coverage-card:hover .sport-image img {
    transform: scale(1.05);
}

.sport-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 24px;
    color: white;
}

/* Sport Selector */
.sport-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sport-selector:hover {
    transform: translateY(-2px);
}

.sport-selector-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sport-coverage-card.selected .sport-selector-icon {
    background: #2563eb;
    border-color: #2563eb;
    transform: rotate(45deg);
}

.sport-selector-icon i {
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.sport-coverage-card.selected .sport-selector-icon i {
    transform: rotate(-45deg);
}

.sport-info {
    flex: 1;
}

.sport-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sport-description {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Coverage Options */
.coverage-options {
    padding: 32px;
    display: none;
    background: #fafbfc;
    border-top: 1px solid #e5e7eb;
}

.sport-coverage-card.selected .coverage-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sport-total {
    grid-column: 1 / -1;
    margin-top: 20px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 800px;
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

.coverage-item {
    margin-bottom: 0;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 80px;
}

.coverage-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.coverage-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.coverage-title i {
    color: #2563eb;
    font-size: 16px;
}

.coverage-description {
    color: #6b7280;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Toggle Switch */
.coverage-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 28px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

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

/* Coverage Controls */
.coverage-controls {
    display: grid;
    grid-template-columns: 140px 120px 100px;
    gap: 12px;
    margin-top: 12px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

.coverage-controls.active {
    opacity: 1;
    max-height: 60px;
    align-items: center;
}

/* Special styling for Personal Liability Coverage controls */
.coverage-controls.personal-liability {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.coverage-controls.personal-liability.active {
    max-height: 120px;
}

.coverage-controls.personal-liability .coverage-option {
    display: grid;
    grid-template-columns: 140px 120px 100px;
    gap: 12px;
    align-items: center;
    margin-bottom: 0;
}

.coverage-option {
    display: grid;
    grid-template-columns: 140px 120px 100px;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.coverage-option:last-child {
    margin-bottom: 0;
}

.coverage-option-label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.coverage-amount-label {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.coverage-amount {
    width: 120px;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
    color: #374151;
}

.coverage-amount:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.coverage-cost {
    font-weight: 700;
    color: #2563eb;
    font-size: 18px;
    min-width: 100px;
    text-align: right;
    padding: 8px 12px;
    background: #eff6ff;
    border-radius: 8px;
    border: 1px solid #dbeafe;
}

/* Sport Total */
.sport-total {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sport-total-label {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sport-total-cost {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Quote Sidebar */
.quote-summary-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    position: relative;
}

.quote-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 20px 20px 0 0;
}

.quote-summary-card h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #1f2937;
    margin: 0 0 24px 0;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.selected-sports-list {
    margin-bottom: 24px;
    min-height: 80px;
}

.no-sports-selected {
    color: #9ca3af;
    font-style: italic;
    text-align: center;
    margin: 32px 0;
    font-size: 16px;
}

.selected-sport-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.selected-sport-section:last-child {
    margin-bottom: 0;
}

.processing-fee-section {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
}

.processing-fee-section .selected-sport-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.selected-sport-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.selected-sport-name {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-weight: 400;
    color: #1f2937;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}

.selected-sport-total {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-weight: 400;
    color: #2563eb;
    font-size: 20px;
    letter-spacing: 0.5px;
    background: #eff6ff;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #dbeafe;
}

.selected-sport-breakdown {
    background: white;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    margin: 0;
}

.coverage-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.coverage-type {
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
}

.coverage-cost {
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
    background: #f0f9ff;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e0f2fe;
    min-width: 60px;
    text-align: center;
    display: inline-block;
}

.total-breakdown {
    border-top: 2px solid #e5e7eb;
    padding-top: 20px;
    margin-bottom: 24px;
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.total-amount {
    font-family: 'Bebas Neue', Arial, sans-serif;
    color: #2563eb;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
}

.quote-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-full {
    font-family: 'Bebas Neue', Arial, sans-serif;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.5);
    text-decoration: none;
    color: white;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

/* Pulsating animation for standout buttons */
.btn-primary.btn-large {
    animation: pulse-glow 2s infinite, button-bounce 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.btn-primary.btn-large:hover::before {
    left: 100%;
}

.btn-primary.btn-large:hover {
    color: white !important;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 25px -5px rgba(245, 158, 11, 0.6), 0 0 20px rgba(245, 158, 11, 0.3);
    }
}

@keyframes button-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Ensure buttons never have underlines */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-large {
    text-decoration: none !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-large:hover,
.btn-primary:focus,
.btn-secondary:focus,
.btn-outline:focus,
.btn-large:focus {
    text-decoration: none !important;
}

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

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

.quote-features {
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 14px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #1f2937;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #1f2937;
    background: #f3f4f6;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.modal-sports-list {
    margin-bottom: 24px;
}

.modal-sport-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.modal-sport-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.modal-sport-item ul {
    list-style: none;
    padding-left: 0;
}

.modal-sport-item li {
    color: #6b7280;
    margin-bottom: 4px;
}

.modal-total {
    text-align: center;
    font-size: 24px;
    margin-bottom: 32px;
    padding: 20px;
    background: #eff6ff;
    border-radius: 12px;
    border: 1px solid #dbeafe;
}

/* Quote Modal */
.quote-modal-content {
    max-width: 700px;
    width: 90vw;
    max-height: 85vh;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.quote-modal-header {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 32px 40px;
    text-align: center;
}

.quote-modal-header h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quote-modal-header p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

.quote-modal-body {
    padding: 40px;
}

.quote-summary h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 24px 0;
}

.modal-sports-list {
    margin-bottom: 32px;
}

.modal-sport-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.modal-sport-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.modal-sport-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-sport-item li {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.modal-sport-item li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.quote-total {
    background: #eff6ff;
    border: 2px solid #dbeafe;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 32px;
}

.quote-total span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 8px;
}

.total-cost {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
}

.quote-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.quote-actions .btn-primary,
.quote-actions .btn-outline {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.quote-actions .btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    text-decoration: none;
}

.quote-actions .btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
    text-decoration: none;
}

.quote-actions .btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.quote-actions .btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Success Modal */
.success-modal-content {
    max-width: 600px;
    width: 90vw;
    max-height: 85vh;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-close i {
    color: white;
    font-size: 18px;
}

.success-modal-header {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 40px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.success-icon i {
    font-size: 36px;
    color: white;
}

.success-modal-header h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.success-modal-header p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.success-modal-body {
    padding: 40px;
}

.quote-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 24px 0;
}

.success-sports-list {
    margin-bottom: 32px;
}

.success-sport-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border-left: 4px solid #10b981;
}

.success-sport-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.success-sport-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-sport-item li {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
}

.success-sport-item li:before {
    content: "•";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.success-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    margin-bottom: 32px;
}

.success-total span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.success-actions .btn-primary,
.success-actions .btn-outline {
    flex: 1;
    justify-content: center;
    min-width: 160px;
}

/* Video Modal */
.video-modal-content {
    max-width: 800px;
    width: 90vw;
    max-height: 80vh;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.video-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.video-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
}

.success-notification.show {
    transform: translateX(0);
}

.success-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.success-content i {
    font-size: 24px;
}

.success-content h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 600;
}

.success-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sports-coverage-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .marketing-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .sports-coverage-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .quote-sidebar {
        order: -1;
    }
    
    .quote-summary-card {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .sport-coverage-card.selected .coverage-options {
        max-height: none;
    }
    
    .marketing-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .marketing-info p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px 0;
    }
    
    .header-content {
        min-height: 60px;
    }
    
    .logo {
        height: 50px;
    }
    
    .tagline {
        height: 32px;
    }
    
    .quote-sidebar {
        order: -1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .sports-column {
        gap: 24px;
    }
    
    .sport-header {
        min-height: 200px;
    }
    
    .sport-title {
        font-size: 1.5rem;
    }
    
    .sport-description {
        font-size: 0.875rem;
    }
    
    .coverage-options {
        padding: 20px;
    }
    
    .sport-coverage-card.selected .coverage-options {
        max-height: none;
    }
    
    .coverage-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .coverage-amount-label {
        font-size: 0.875rem;
    }
    
    .coverage-cost {
        font-size: 0.875rem;
    }
    
    .modal-content {
        margin: 20px;
        padding: 24px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .quote-modal-content {
        margin: 20px;
        max-height: 90vh;
    }
    
    .quote-modal-header {
        padding: 24px 20px;
    }
    
    .quote-modal-header h2 {
        font-size: 1.75rem;
    }
    
    .quote-modal-body {
        padding: 24px 20px;
    }
    
    .quote-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .quote-actions .btn-primary,
    .quote-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .success-modal-content {
        margin: 20px;
        max-height: 90vh;
    }
    
    .success-modal-header {
        padding: 24px 20px;
    }
    
    .success-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .success-modal-body {
        padding: 24px 20px;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .success-actions .btn-primary,
    .success-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .marketing-section {
        padding: 40px 0;
    }
    
    .marketing-info h2 {
        font-size: 2rem;
    }
    
    .marketing-info p {
        font-size: 1rem;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .video-placeholder p {
        font-size: 1.125rem;
    }
    
    .marketing-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 12px 0;
    }
    
    .header-content {
        min-height: 50px;
        flex-direction: column;
        gap: 12px;
    }
    
    .logo {
        height: 40px;
    }
    
    .tagline {
        height: 24px;
    }
    
    .quote-sidebar {
        order: -1;
    }
    
    .section-header {
        margin-bottom: 32px;
        padding-top: 32px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quote-summary-card {
        padding: 20px;
    }
    
    .sport-selector {
        padding: 16px;
    }
    
    .sport-selector-icon {
        width: 40px;
        height: 40px;
    }
    
    .sport-title {
        font-size: 1.25rem;
    }
    
    .marketing-section {
        padding: 32px 0;
    }
    
    .marketing-info h2 {
        font-size: 1.75rem;
    }
    
    .marketing-info p {
        font-size: 0.95rem;
    }
    
    .video-placeholder {
        height: 200px;
    }
    
    .video-placeholder i {
        font-size: 2.5rem;
    }
    
    .video-placeholder p {
        font-size: 1rem;
    }
    
    .marketing-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .marketing-actions .btn-primary,
    .marketing-actions .btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Site Footer */
.site-footer {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 0;
    border-top: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #60a5fa;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer responsive styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 50vh;
    display: flex;
    align-items: center;

}

@keyframes gradient-shift {
    0%, 100% {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    }
    50% {
        background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    opacity: 0.2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-bg-img:nth-child(odd) {
    animation: float-up 6s ease-in-out infinite;
}

.hero-bg-img:nth-child(even) {
    animation: float-down 6s ease-in-out infinite;
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@keyframes float-down {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(15px) scale(1.02);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: stat-fade-in 1s ease-out forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes stat-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: title-bounce 3s ease-out;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes title-bounce {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    60% {
        transform: translateY(5px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #4b5563;
    font-weight: 400;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.feature-highlight-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-highlight-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.3);
}

.feature-highlight-card:hover::after {
    left: 100%;
}

.feature-highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-highlight-card:hover .feature-highlight-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.feature-highlight-icon i {
    font-size: 32px;
    color: white;
}

.feature-highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-highlight-card > p {
    color: #6b7280;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-benefits li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 24px;
    font-weight: 400;
    line-height: 1.5;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.features-secondary {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.feature-secondary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.feature-secondary-item i {
    color: #2563eb;
    font-size: 18px;
}

.feature-secondary-item span {
    color: #4b5563;
    font-weight: 500;
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background: white;
}

.activities-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.activity-visual-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
}

.activity-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.activity-visual-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.4);
}

.activity-visual-card:hover::before {
    opacity: 0.1;
}

.activity-visual-card:hover .activity-overlay {
    transform: scale(1.05);
}

.activity-visual-card .activity-overlay {
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease;
}

.activity-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
    position: relative;
    z-index: 1;
}

.activity-visual-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.activity-overlay h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: white;
    margin: 0;
    text-align: center;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.8),
        0 0 8px rgba(0,0,0,0.6),
        1px 1px 2px rgba(0,0,0,0.9);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 16px;
    line-height: 1;
    pointer-events: auto;
}

.activities-more {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
}

.activities-more p {
    color: #4b5563;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.scenario-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scenario-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 40px -10px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.scenario-card:hover::before {
    opacity: 1;
}

.scenario-card > * {
    position: relative;
    z-index: 1;
}

.scenario-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.scenario-icon i {
    font-size: 32px;
    color: white;
}

.scenario-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.scenario-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-visual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-main h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.about-lead {
    font-size: 1.3rem;
    color: #6b7280;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-stat {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.about-stat-number {
    display: block;
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2563eb;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-innovation h3 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-innovation > p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.innovation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.innovation-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.innovation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.innovation-card i {
    font-size: 18px;
    color: #2563eb;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.innovation-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

/* CTA Section */
.cta-section {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.cta-section::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.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 16px;
    opacity: 0.95;
}

.cta-features {
    font-size: 1.1rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.cta-tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-actions {
    margin-bottom: 32px;
}

.cta-website {
    opacity: 0.8;
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.cta-website a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.cta-website a:hover {
    opacity: 0.8;
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .hero-section {
        min-height: 40vh;
        padding: 40px 0;
    }
    
    .hero-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
    }
    
    .features-secondary {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .activities-visual {
        grid-template-columns: 1fr;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .innovation-cards {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-main h2 {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-tagline {
        margin-bottom: 32px;
    }
    
    .cta-actions {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero-image-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .features-secondary {
        grid-template-columns: 1fr;
    }
    
    .feature-secondary-item {
        justify-content: center;
    }
}

/* Sport-specific image focal point adjustments */
.sport-coverage-card[data-sport="golf"] .sport-image img {
    object-position: center 70%;
}

.sport-coverage-card[data-sport="gaming"] .sport-image img {
    object-position: center 60%;
}

