/* ============================================
   CONTACT PAGE - SEAFOOD4AFRICA
   Professional Custom CSS
============================================ */

/* ============================================
   1. BREADCRUMB SECTION
============================================ */
/* ============================================
   CONTACT HERO SECTION - SAME STYLE AS EXHIBITOR
============================================ */
/* ============================================
   CONTACT BREADCRUMB - HERO STYLE
============================================ */
:root {
    --primary-color: #58c0ef;
    --secondary-color: #0e8296;
    --dark-color: #1a1a2e;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}


.sf-contact-breadcrumb {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;

    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(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 2;
    will-change: opacity;
}


.sf-contact-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.sf-breadcrumb-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.sf-breadcrumb-subtitle {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.sf-breadcrumb-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ============================================
   BREADCRUMB NAV - BUTTON STYLE
============================================ */
.sf-breadcrumb-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.sf-btn-primary,
.sf-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.sf-btn-primary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.sf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
     color: var(--primary-color);
}

.sf-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.sf-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}


/* ============================================
   RESPONSIVE - BREADCRUMB NAV BUTTONS
============================================ */

/* Tablet */
@media (max-width: 991px) {
    .sf-breadcrumb-nav {
        gap: 16px;
        margin-top: 25px;
    }
    
    .sf-breadcrumb-nav .sf-btn-primary,
    .sf-breadcrumb-nav .sf-btn-secondary {
        padding: 16px 35px;
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sf-breadcrumb-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 30px;
    }
    
    .sf-breadcrumb-nav .sf-btn-primary,
    .sf-breadcrumb-nav .sf-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .sf-breadcrumb-nav .sf-btn-primary i,
    .sf-breadcrumb-nav .sf-btn-secondary i {
        font-size: 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .sf-breadcrumb-nav {
        gap: 12px;
        margin-top: 25px;
    }
    
    .sf-breadcrumb-nav .sf-btn-primary,
    .sf-breadcrumb-nav .sf-btn-secondary {
        padding: 14px 25px;
        font-size: 14px;
        gap: 10px;
    }
    
    .sf-breadcrumb-nav .sf-btn-primary i,
    .sf-breadcrumb-nav .sf-btn-secondary i {
        font-size: 14px;
    }
}

/* Animation */
.sf-breadcrumb-nav {
    animation: breadcrumbNavFadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes breadcrumbNavFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sf-breadcrumb-separator {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 400;
}

.sf-breadcrumb-current {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE - CONTACT BREADCRUMB
============================================ */

/* Tablet */
@media (max-width: 991px) {
    .sf-contact-breadcrumb {
        min-height: 500px;
    }
    
    .sf-breadcrumb-content {
        padding: 60px 20px;
    }
    
    .sf-breadcrumb-title {
        font-size: 44px;
    }
    
    .sf-breadcrumb-nav {
        padding: 10px 25px;
        gap: 10px;
    }
    
    .sf-breadcrumb-link,
    .sf-breadcrumb-current {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sf-contact-breadcrumb {
        min-height: 450px;
    }
    
    .sf-breadcrumb-content {
        padding: 50px 20px;
    }
    
    .sf-breadcrumb-subtitle {
        font-size: 12px;
        padding: 6px 20px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }
    
    .sf-breadcrumb-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .sf-breadcrumb-nav {
        padding: 8px 20px;
        gap: 8px;
        margin-top: 25px;
    }
    
    .sf-breadcrumb-link,
    .sf-breadcrumb-current {
        font-size: 13px;
    }
    
    .sf-breadcrumb-separator {
        font-size: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .sf-contact-breadcrumb {
        min-height: 400px;
    }
    
    .sf-breadcrumb-content {
        padding: 40px 15px;
    }
    
    .sf-breadcrumb-subtitle {
        font-size: 11px;
        padding: 5px 18px;
        letter-spacing: 1.2px;
    }
    
    .sf-breadcrumb-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .sf-breadcrumb-nav {
        padding: 8px 16px;
        gap: 6px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .sf-breadcrumb-link,
    .sf-breadcrumb-current {
        font-size: 12px;
    }
    
    .sf-breadcrumb-separator {
        font-size: 11px;
    }
}

/* Animations */
@keyframes breadcrumbFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sf-breadcrumb-content > * {
    animation: breadcrumbFadeIn 0.8s ease forwards;
}

.sf-breadcrumb-subtitle {
    animation-delay: 0.1s;
    opacity: 0;
}

.sf-breadcrumb-title {
    animation-delay: 0.2s;
    opacity: 0;
}

.sf-breadcrumb-nav {
    animation-delay: 0.3s;
    opacity: 0;
}

/* ============================================
   2. CONTACT SECTION
============================================ */
.sf-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   3. CONTACT INFO CARDS
============================================ */
.sf-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.sf-info-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 cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sf-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #58c0ef, #0e8296);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sf-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sf-info-card:hover::before {
    transform: scaleX(1);
}

.sf-info-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-info-card:hover .sf-info-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #58c0ef, #0e8296);
}

.sf-info-icon i {
    font-size: 36px;
    color: #58c0ef;
    transition: color 0.3s ease;
}

.sf-info-card:hover .sf-info-icon i {
    color: #fff;
}

.sf-info-title {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sf-info-text {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.sf-info-text a {
    color: #58c0ef;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sf-info-text a:hover {
    color: #0e8296;
    text-decoration: underline;
}

/* ============================================
   4. FORM WRAPPER
============================================ */
.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;
}

/* ============================================
   5. 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;
}

.sf-alert-close:hover {
    background: rgba(0,0,0,0.2);
    transform: scale(1.1);
}

/* ============================================
   6. CONTACT FORM
============================================ */
.sf-contact-form {
    padding: 40px;
    background: #fff;
    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-grid-full {
    grid-column: 1 / -1;
}

.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,
.sf-form-textarea {
    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,
.sf-form-textarea:focus {
    border-color: #58c0ef;
    outline: none;
    box-shadow: 0 0 0 4px rgba(88,192,239,0.1);
}

.sf-form-input.is-invalid,
.sf-form-textarea.is-invalid {
    border-color: #dc3545;
}

.sf-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.sf-form-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sf-form-error::before {
    content: '⚠';
}

/* ============================================
   7. 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;
}

/* ============================================
   8. 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;
}

/* ============================================
   9. 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;
}

/* ============================================
   10. RESPONSIVE DESIGN
============================================ */

@media (max-width: 1199px) {
    .sf-breadcrumb-title {
        font-size: 42px;
    }
    
    .sf-contact-info-grid {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .sf-contact-breadcrumb {
        height: 350px;
    }
    
    .sf-contact-section {
        padding: 60px 0;
    }
    
    .sf-breadcrumb-title {
        font-size: 36px;
    }
    
    .sf-contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .sf-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .sf-contact-breadcrumb {
        height: 300px;
    }
    
    .sf-contact-section {
        padding: 50px 0;
    }
    
    .sf-breadcrumb-title {
        font-size: 28px;
    }
    
    .sf-form-title {
        font-size: 28px;
    }
    
    .sf-contact-form {
        padding: 30px 20px;
    }
    
    .sf-map-wrapper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .sf-breadcrumb-title {
        font-size: 24px;
    }
    
    .sf-form-title {
        font-size: 24px;
    }
    
    .sf-submit-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* ============================================
   11. PRINT STYLES
============================================ */
@media print {
    .sf-contact-breadcrumb,
    .sf-map-section {
        display: none;
    }
    
    .sf-contact-section {
        background: #fff;
    }
}

/* ============================================
   12. ACCESSIBILITY
============================================ */
.sf-submit-btn:focus,
.sf-form-input:focus,
.sf-form-textarea:focus {
    outline: 2px solid #58c0ef;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}