/* ============================================
   VISITEUR PAGE - SEAFOOD4AFRICA
   Professional Custom CSS
============================================ */

/* ============================================
   1. BREADCRUMB SECTION
============================================ */
.sf-visitor-breadcrumb {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sf-breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14,130,150,0.85) 0%, rgba(88,192,239,0.75) 100%);
    z-index: 1;
}

.sf-visitor-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.sf-breadcrumb-content {
    text-align: center;
}

.sf-breadcrumb-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.sf-breadcrumb-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sf-breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
}

.sf-breadcrumb-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sf-breadcrumb-link:hover {
    color: rgba(255,255,255,0.7);
}

.sf-breadcrumb-separator {
    color: rgba(255,255,255,0.7);
}

.sf-breadcrumb-current {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* ============================================
   2. VISITOR SECTION
============================================ */
.sf-visitor-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Header */
.sf-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sf-section-subtitle {
    color: #58c0ef;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.sf-section-title {
    color: #1a1a2e;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sf-section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #58c0ef, #0e8296);
    margin: 0 auto;
    border-radius: 2px;
}

/* Content */
.sf-visitor-content {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.sf-lead-text {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Visitor Profile */
.sf-visitor-profile {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sf-profile-title {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sf-profile-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Discover Section */
.sf-discover-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sf-discover-title {
    color: #1a1a2e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sf-discover-title i {
    color: #58c0ef;
    font-size: 32px;
}

.sf-discover-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sf-discover-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sf-discover-item:hover {
    background: rgba(88,192,239,0.1);
    transform: translateX(10px);
}

.sf-discover-item i {
    color: #58c0ef;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sf-discover-item span {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    flex: 1;
}

/* Benefits Grid */
.sf-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sf-benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.sf-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sf-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(88,192,239,0.15), rgba(14,130,150,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.sf-benefit-card:hover .sf-benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #58c0ef, #0e8296);
}

.sf-benefit-icon i {
    font-size: 36px;
    color: #58c0ef;
    transition: color 0.3s ease;
}

.sf-benefit-card:hover .sf-benefit-icon i {
    color: #fff;
}

.sf-benefit-title {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sf-benefit-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   3. FORM SECTION
============================================ */
.sf-form-section {
    padding: 80px 0;
    background: #fff;
}

.sf-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Form Header */
.sf-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.sf-form-subtitle {
    color: #58c0ef;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.sf-form-title {
    color: #1a1a2e;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sf-form-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Form Info */
.sf-form-info {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 40px;
}

.sf-info-title {
    color: #1a1a2e;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sf-info-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Alerts */
.sf-alert {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
}

.sf-alert-success {
    background: #d4edda;
    border: 2px solid #28a745;
}

.sf-alert-danger {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.sf-alert-icon {
    flex-shrink: 0;
}

.sf-alert-success .sf-alert-icon i {
    color: #28a745;
    font-size: 32px;
}

.sf-alert-danger .sf-alert-icon i {
    color: #dc3545;
    font-size: 32px;
}

.sf-alert-content {
    flex: 1;
}

.sf-alert-content h4 {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sf-alert-content p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

.sf-alert-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.1);
    border: none;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-alert-close:hover {
    background: rgba(0,0,0,0.2);
    transform: scale(1.1);
}

/* Registration Form */
.sf-registration-form {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sf-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.sf-form-group {
    display: flex;
    flex-direction: column;
}

.sf-form-label {
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sf-form-label i {
    color: #58c0ef;
    font-size: 16px;
}

.sf-form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.sf-form-input:focus {
    border-color: #58c0ef;
    outline: none;
    box-shadow: 0 0 0 4px rgba(88,192,239,0.1);
}

.sf-form-input.is-invalid {
    border-color: #dc3545;
}

.sf-form-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sf-form-error::before {
    content: '⚠';
}

/* Submit Button */
.sf-form-submit {
    text-align: center;
}

.sf-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #58c0ef, #0e8296);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(88,192,239,0.3);
}

.sf-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88,192,239,0.5);
}

.sf-submit-btn:active {
    transform: translateY(-1px);
}

.sf-submit-btn i {
    transition: transform 0.3s ease;
}

.sf-submit-btn:hover i {
    transform: translateX(5px);
}

.sf-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   4. MAP SECTION
============================================ */
.sf-map-section {
    position: relative;
    overflow: hidden;
}

.sf-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.sf-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   5. ANIMATIONS
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* ============================================
   6. RESPONSIVE DESIGN
============================================ */

@media (max-width: 1199px) {
    .sf-breadcrumb-title {
        font-size: 42px;
    }
    
    .sf-section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .sf-visitor-breadcrumb {
        height: 350px;
    }
    
    .sf-visitor-section,
    .sf-form-section {
        padding: 60px 0;
    }
    
    .sf-breadcrumb-title {
        font-size: 36px;
    }
    
    .sf-section-title {
        font-size: 32px;
    }
    
    .sf-benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sf-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .sf-visitor-breadcrumb {
        height: 300px;
    }
    
    .sf-visitor-section,
    .sf-form-section {
        padding: 50px 0;
    }
    
    .sf-breadcrumb-title {
        font-size: 28px;
    }
    
    .sf-section-title {
        font-size: 28px;
    }
    
    .sf-form-title {
        font-size: 28px;
    }
    
    .sf-visitor-profile,
    .sf-discover-section {
        padding: 30px 20px;
    }
    
    .sf-registration-form {
        padding: 30px 20px;
    }
    
    .sf-map-wrapper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .sf-breadcrumb-title {
        font-size: 24px;
    }
    
    .sf-section-title {
        font-size: 24px;
    }
    
    .sf-form-title {
        font-size: 24px;
    }
    
    .sf-submit-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .sf-discover-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   7. PRINT STYLES
============================================ */
@media print {
    .sf-visitor-breadcrumb,
    .sf-map-section {
        display: none;
    }
    
    .sf-visitor-section,
    .sf-form-section {
        background: #fff;
    }
}

/* ============================================
   8. ACCESSIBILITY
============================================ */
.sf-submit-btn:focus,
.sf-form-input:focus {
    outline: 2px solid #58c0ef;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}