/* 
   Sentinels FC Registration Form CSS
   Premium, Modern, Responsive Stylesheet 
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

.sentinels-form-container {
    font-family: 'Outfit', sans-serif;
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 !important;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 15px 20px -10px rgba(15, 23, 42, 0.04);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
}

/* Header Theming */
.sentinels-form-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 35px 30px;
    text-align: center;
    color: #ffffff;
    border-bottom: 4px solid #dc2626;
    position: relative;
}

.sentinels-logo-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sentinels-form-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    letter-spacing: 2px;
}

.sentinels-tagline {
    font-style: italic;
    font-size: 14px;
    color: #94a3b8;
    margin-top: 5px;
    letter-spacing: 1px;
}

.sentinels-title {
    font-size: 16px;
    font-weight: 500;
    color: #f1f5f9;
    margin-top: 15px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 9999px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Progress Tracker */
.sentinels-progress-tracker {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.step-progress-line {
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 4px;
    background: #e2e8f0;
    z-index: 1;
    transform: translateY(-50%);
}

.step-progress-fill {
    height: 100%;
    background: #dc2626;
    width: 0%;
    transition: width 0.4s ease;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    cursor: pointer;
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    color: #64748b;
    font-weight: 700;
    font-size: 14px;
    line-height: 32px;
    margin: 0 auto 10px auto;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Active & Completed States */
.progress-step.active .step-num {
    border-color: #dc2626;
    background: #dc2626;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

.progress-step.active .step-label {
    color: #0f172a;
    font-weight: 700;
}

.progress-step.completed .step-num {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
}

.progress-step.completed .step-label {
    color: #64748b;
}

/* Form Styles */
#sentinels-registration-form {
    padding: 40px;
}

.form-step-panel {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.form-step-panel.active {
    display: block;
}

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

.step-section-heading {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.subsection-wrap {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.subsection-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.section-desc {
    font-size: 14px;
    color: #64748b;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Layout Grid */
.form-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.form-group {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.col-2 { width: 16.666%; }
.col-4 { width: 33.333%; }
.col-6 { width: 50%; }
.col-12 { width: 100%; }

/* Input Styles */
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: #ffffff;
    color: #1e293b;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 16px) 50% !important;
    background-size: 16px !important;
    padding-right: 40px !important;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.readonly-input {
    background-color: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    color: #64748b !important;
    font-weight: 600;
}

/* Medical Questions Table */
.medical-question-row {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e2e8f0;
}

.med-question-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    min-width: 250px;
}

.med-question-options {
    display: flex;
    gap: 15px;
}

.radio-label, .checkbox-label {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
}

.radio-label input, .checkbox-label input {
    margin-right: 8px;
    accent-color: #dc2626;
    width: 18px;
    height: 18px;
}

.med-question-details {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.med-question-details label {
    font-size: 12px;
    margin-bottom: 6px;
}

/* Fees Table styles */
.fees-calculator-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.fees-calculator-table th, 
.fees-calculator-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
}

.fees-calculator-table th {
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 600;
}

.fees-calculator-table td {
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.fees-calculator-table tr:last-child td {
    border-bottom: none;
}

.fees-calculator-table .total-row {
    background-color: #f8fafc;
    font-weight: 700;
    border-top: 2px solid #e2e8f0;
}

.fees-calculator-table .total-row td {
    color: #0f172a;
    font-size: 16px;
}

.fees-calculator-table .total-row td:last-child {
    color: #dc2626;
}

.inline-cb input {
    margin-right: 10px;
    accent-color: #dc2626;
    width: 18px;
    height: 18px;
}

/* Waivers */
.waiver-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    max-height: 150px;
    overflow-y: scroll;
}

.waiver-box h5 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.waiver-box p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
}

.consent-options {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 18px;
}

/* Volunteer grid */
.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 20px;
}

.volunteer-grid .checkbox-label {
    font-weight: 500;
}

/* Controls */
.form-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-prev {
    background: #ffffff;
    color: #64748b;
    border: 1px solid #cbd5e1;
}

.btn-prev:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #94a3b8;
}

.btn-next {
    background: #0f172a;
    color: #ffffff;
    border: none;
    margin-left: auto;
}

.btn-next:hover {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-submit {
    background: #dc2626;
    color: #ffffff;
    border: none;
    margin-left: auto;
}

.btn-submit:hover {
    background: #b91c1c;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

/* Overlay processing indicator */
.form-message-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #ffffff;
    text-align: center;
    backdrop-filter: blur(4px);
}

.message-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.message-text {
    font-size: 18px;
    font-weight: 600;
    max-width: 500px;
    line-height: 1.5;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-icon {
    font-size: 55px;
    color: #10b981;
    margin-bottom: 20px;
}

.error-icon {
    font-size: 55px;
    color: #ef4444;
    margin-bottom: 20px;
}

.btn-close-msg {
    margin-top: 25px;
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.btn-close-msg:hover {
    background: #b91c1c;
}

/* Validation Alert */
.validation-error {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.error-message-label {
    color: #ef4444;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sentinels-form-container {
        margin: 10px 0 !important;
        border-radius: 8px;
    }
    
    .sentinels-progress-tracker {
        padding: 20px;
    }
    
    .step-progress-line {
        left: 40px;
        right: 40px;
    }
    
    .step-label {
        display: none;
    }
    
    #sentinels-registration-form {
        padding: 20px;
    }
    
    .col-4, .col-6, .col-2 {
        width: 100%;
    }
    
    .medical-question-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .med-question-options {
        margin-top: 10px;
    }
}

/* ----------------------------------------------------
   Sentinels FC Pricing Sheet Styles 
---------------------------------------------------- */
.sentinels-pricing-container {
    background: #ffffff;
}

.sentinels-pricing-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px;
}

.sentinels-pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sentinels-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #dc2626;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sentinels-pricing-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

.sentinels-pricing-card:hover::before {
    opacity: 1;
}

.sentinels-pricing-card .card-header {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 12px;
}

.sentinels-pricing-card .card-price {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.sentinels-pricing-card .card-price .currency {
    font-size: 24px;
    font-weight: 700;
    margin-right: 2px;
    align-self: flex-start;
}

.sentinels-pricing-card .card-price .period {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-left: 6px;
}

.sentinels-pricing-card .card-badge {
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 9999px;
    align-self: flex-start;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 15px 0 25px 0;
}

.sentinels-pricing-card .features-heading {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sentinels-pricing-card .card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sentinels-pricing-card .card-features li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #475569;
    line-height: 1.4;
}

.sentinels-pricing-card .card-features li svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #dc2626;
    stroke-width: 2.5;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sentinels-pricing-card .card-subtext {
    font-style: italic;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 25px;
    display: block;
}

/* Details Section */
.sentinels-pricing-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 40px 40px 40px;
}

.pricing-details-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
}

.pricing-details-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    margin-top: 0;
    margin-bottom: 20px;
}

.pricing-details-box .detail-item {
    margin-bottom: 20px;
}

.pricing-details-box .detail-item:last-of-type {
    margin-bottom: 0;
}

.pricing-details-box .detail-item strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-details-box .detail-item p {
    margin: 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
}

.pricing-details-box .payment-methods-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pricing-details-box .payment-method-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
}

.pricing-details-box .payment-method-card .method-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-details-box .payment-method-card .method-info {
    display: flex;
    flex-direction: column;
}

.pricing-details-box .payment-method-card .method-name {
    font-weight: 600;
    font-size: 13px;
    color: #0f172a;
}

.pricing-details-box .payment-method-card .method-detail {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

/* Disclaimer */
.pricing-disclaimer-box {
    padding: 20px 40px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

/* QR & CTA Section */
.pricing-qr-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pricing-qr-section .qr-content-left {
    flex: 1;
}

.pricing-qr-section .qr-content-left h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.pricing-qr-section .qr-content-left p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.pricing-qr-section .register-btn {
    display: inline-flex;
    align-items: center;
    background: #dc2626;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.15);
}

.pricing-qr-section .register-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
}

.pricing-qr-section .register-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

.pricing-qr-section .register-btn:hover svg {
    transform: translateX(4px);
}

.pricing-qr-section .qr-code-wrapper {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.pricing-qr-section .qr-code-wrapper img {
    width: 130px;
    height: 130px;
    display: block;
    border: none;
}

.pricing-qr-section .qr-scan-label {
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.pricing-qr-section .qr-url-label {
    font-size: 10px;
    color: #64748b;
    margin-top: 2px;
    font-weight: 500;
}

/* Responsive adjustments for Pricing Sheet */
@media (max-width: 991px) {
    .sentinels-pricing-cards-grid,
    .sentinels-pricing-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }
    
    .sentinels-pricing-details-grid {
        padding-top: 0;
    }
    
    .pricing-qr-section {
        flex-direction: column;
        text-align: center;
        padding: 45px 30px;
        gap: 30px;
    }
    
    .pricing-qr-section .register-btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .sentinels-pricing-cards-grid,
    .sentinels-pricing-details-grid {
        padding: 20px;
    }
    
    .sentinels-pricing-details-grid {
        padding-top: 0;
    }
    
    .pricing-details-box {
        padding: 20px;
    }
    
    .pricing-details-box .payment-methods-list {
        grid-template-columns: 1fr;
    }
    
    .pricing-disclaimer-box {
        padding: 20px;
    }
    
    .sentinels-pricing-card {
        padding: 25px 20px;
    }
}

/* ----------------------------------------------------
   Sentinels FC Vision & Flags Styles 
   Premium Clean Light Theme
---------------------------------------------------- */
.sentinels-vision-flags-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 40px;
    background: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    color: #334155;
    position: relative;
    overflow: hidden;
}

/* Background glowing accent - disabled for pure white theme */
.sentinels-vision-flags-container::before {
    display: none !important;
}

/* Our Vision Section */
.sentinels-vision-section {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.vision-header-inside {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.vision-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(220, 38, 38, 0.05);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 50%;
    color: #dc2626;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.08);
    animation: pulseGlow 3s infinite ease-in-out;
    flex-shrink: 0;
}

.vision-globe {
    width: 20px;
    height: 20px;
}

.vision-title-inside {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    color: #0f172a;
}

.vision-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

.quote-mark {
    font-size: 110px;
    font-family: Georgia, serif;
    color: #dc2626;
    opacity: 0.08;
    position: absolute;
    line-height: 1;
    pointer-events: none;
}

.quote-start {
    top: 75px;
    left: 25px;
}

.quote-end {
    bottom: -40px;
    right: 25px;
}

.vision-text {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
    color: #1e293b;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Flags Section */
.sentinels-flags-section {
    position: relative;
    z-index: 2;
    border-top: 1px solid #e2e8f0;
    padding-top: 60px;
}

.sentinels-flags-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.flags-section-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px 0;
    color: #0f172a;
}

.flags-section-subtitle {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Flag Card */
.flag-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.flag-image-wrapper {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
}

.flag-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.flag-info {
    padding: 15px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.country-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #475569;
    margin: 0;
    transition: color 0.3s ease;
}

/* Card Hovers */
.flag-card:hover {
    transform: translateY(-6px);
    border-color: #dc2626;
    box-shadow: 0 12px 24px -8px rgba(220, 38, 38, 0.15);
    background: #ffffff;
}

.flag-card:hover .flag-img {
    transform: scale(1.06);
}

.flag-card:hover .country-name {
    color: #dc2626;
}

/* Global Flags Grid */
.global-flags-wrap {
    margin-top: 20px;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

.flags-grid .flag-image-wrapper {
    aspect-ratio: 3/2;
}

.flags-grid .flag-info {
    padding: 15px;
}

.flags-grid .country-name {
    font-size: 12px;
}

/* Keyframes */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(220, 38, 38, 0.08);
        border-color: rgba(220, 38, 38, 0.15);
    }
    50% {
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.2);
        border-color: rgba(220, 38, 38, 0.4);
    }
}

/* Responsive adjustments for Vision & Flags */
@media (max-width: 991px) {
    .sentinels-vision-flags-container {
        padding: 40px 30px;
        margin: 20px auto;
        width: auto;
    }

    .vision-title {
        font-size: 36px;
    }

    .vision-card {
        padding: 40px 30px;
    }

    .vision-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .flags-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .sentinels-vision-flags-container {
        padding: 30px 20px;
        margin: 10px auto;
        width: auto;
    }
}

@media (max-width: 576px) {
    .vision-title {
        font-size: 30px;
    }

    .vision-card {
        padding: 35px 20px;
    }

    .vision-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .quote-mark {
        font-size: 70px;
    }

    .quote-start {
        top: 5px;
        left: 10px;
    }

    .quote-end {
        bottom: -35px;
        right: 10px;
    }

    .flags-section-title {
        font-size: 24px;
    }

    .flags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .flags-grid .country-name {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .flags-grid .flag-info {
        padding: 10px;
    }
}

