/* ============================================
   EXHIBITOR PAGE - SEAFOOD4AFRICA
   Modern Design with Language Selection
============================================ */

: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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   1. HERO SECTION
============================================ */
.sf-exhibitor-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sf-exhibitor-hero .container {
    position: relative;
    z-index: 2;
}

.sf-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.sf-hero-badge {
    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-hero-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);
}

.sf-hero-description {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sf-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.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);
}

.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;
}

/* ============================================
   2. WHY EXHIBIT SECTION
============================================ */
.sf-why-exhibit-section {
    padding: 100px 0;
    background: #fff;
}

.sf-why-exhibit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sf-section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(88,192,239,0.1);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.sf-section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.sf-section-text {
    text-align: justify;
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Key Benefits Stats */
.sf-key-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.sf-benefit-card {
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.sf-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sf-benefit-number {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.sf-benefit-label {
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

/* Download Box */
.sf-download-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.sf-download-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.sf-download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-download-icon i {
    font-size: 28px;
    color: #fff;
}

.sf-download-content {
    flex: 1;
}

.sf-download-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.sf-download-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 0 12px 0;
}

/* Language Selection Dropdown */
.sf-download-language-select {
    margin-top: 12px;
}

.sf-language-dropdown {
    width: 100%;
    max-width: 200px;
    padding: 10px 35px 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2358c0ef' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sf-language-dropdown:hover {
    border-color: var(--primary-color);
}

.sf-language-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(88,192,239,0.1);
}

.sf-download-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.sf-download-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    color: #fff;
}

/* Benefits Grid */
.sf-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sf-benefit-box {
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.sf-benefit-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sf-benefit-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sf-benefit-icon-box i {
    font-size: 32px;
    color: #fff;
}

.sf-benefit-title {
    text-align: justify;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.sf-benefit-desc {
    text-align: justify;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   3. BOOKING SECTION
============================================ */
.sf-booking-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sf-booking-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.sf-section-subtitle {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 15px;
}

/* Messages */
.sf-message {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sf-message-success {
    background: #d4edda;
    border: 2px solid #28a745;
}

.sf-message-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.sf-message-icon {
    flex-shrink: 0;
}

.sf-message-success .sf-message-icon i {
    color: #28a745;
    font-size: 32px;
}

.sf-message-error .sf-message-icon i {
    color: #dc3545;
    font-size: 32px;
}

.sf-message-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 6px;
}

.sf-message-content p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.sf-message-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.1);
    border: none;
    border-radius: 50%;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-message-close:hover {
    background: rgba(0,0,0,0.2);
    transform: scale(1.1);
}

/* Booking Container */
.sf-booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Form Header */
.sf-form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.sf-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
}

.sf-form-subtitle {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

/* Form Layout */
.sf-form-group {
    margin-bottom: 28px;
}

.sf-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.sf-form-col {
    display: flex;
    flex-direction: column;
}

/* Labels */
.sf-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.sf-label i {
    color: #58c0ef;
    font-size: 16px;
}

.sf-label-required::after {
    content: '*';
    color: #dc3545;
    margin-left: 4px;
    font-size: 16px;
}

/* Input Fields */
.sf-input,
.sf-select,
.sf-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #212529;
    background: #fff;
    transition: all 0.3s ease;
}

.sf-input:focus,
.sf-select:focus,
.sf-textarea:focus {
    outline: none;
    border-color: #58c0ef;
    box-shadow: 0 0 0 3px rgba(88,192,239,0.1);
}

.sf-input.is-invalid,
.sf-select.is-invalid,
.sf-textarea.is-invalid {
    border-color: #dc3545;
}

.sf-input::placeholder,
.sf-textarea::placeholder {
    color: #adb5bd;
}

.sf-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Select Dropdown */
.sf-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2358c0ef' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

/* Radio Buttons */
.sf-form-group-radio {
    margin-bottom: 32px;
}

.sf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sf-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sf-radio-option:hover {
    border-color: #58c0ef;
    background: rgba(88,192,239,0.05);
}

.sf-radio-option input[type="radio"] {
    display: none;
}

.sf-radio-custom {
    position: relative;
    width: 22px;
    height: 22px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sf-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.sf-radio-option input[type="radio"]:checked + .sf-radio-custom {
    background: linear-gradient(135deg, #58c0ef, #0088cc);
    border-color: #58c0ef;
}

.sf-radio-option input[type="radio"]:checked + .sf-radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.sf-radio-text {
    font-size: 15px;
    font-weight: 500;
    color: #212529;
}

/* Error Messages */
.sf-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
}

.sf-error::before {
    content: '⚠';
    font-size: 14px;
}

/* Submit Button */
.sf-form-submit-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.sf-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #58c0ef, #0088cc);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(88,192,239,0.3);
}

.sf-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88,192,239,0.4);
}

.sf-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sf-btn-submit i {
    font-size: 18px;
}

/* Contact Sidebar */
.sf-contact-sidebar {
    max-width: 500px;
    margin: 40px auto 0;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sf-sidebar-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
}

.sf-sidebar-text {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 30px;
}

.sf-contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sf-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sf-contact-item:hover {
    background: rgba(88,192,239,0.1);
}

.sf-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #58c0ef, #0088cc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-contact-icon i {
    font-size: 22px;
    color: #fff;
}

.sf-contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sf-contact-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sf-contact-value {
    font-size: 16px;
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sf-contact-value:hover {
    color: #58c0ef;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Large Desktop */
@media (max-width: 1400px) {
    .sf-why-exhibit-grid {
        gap: 60px;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .sf-why-exhibit-section {
        padding: 80px 0;
    }
    
    .sf-why-exhibit-grid {
        gap: 50px;
    }
    
    .sf-section-title {
        font-size: 24px;
    }
    
    .sf-section-text {
        font-size: 16px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .sf-why-exhibit-section {
        padding: 70px 0;
    }
    
    .sf-why-exhibit-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sf-section-title {
        font-size: 26px;
    }
    
    .sf-section-text {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .sf-key-benefits {
        gap: 16px;
        margin-bottom: 35px;
    }
    
    .sf-benefit-card {
        padding: 25px 15px;
    }
    
    .sf-benefit-number {
        font-size: 32px;
    }
    
    .sf-benefit-label {
        font-size: 13px;
    }
    
    .sf-download-box {
        padding: 25px;
        gap: 16px;
    }
    
    .sf-download-icon {
        width: 55px;
        height: 55px;
    }
    
    .sf-download-icon i {
        font-size: 24px;
    }
    
    .sf-download-content h4 {
        font-size: 17px;
    }
    
    .sf-download-content p {
        font-size: 13px;
    }
    
    .sf-download-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    
    .sf-benefits-grid {
        gap: 20px;
    }
    
    .sf-benefit-box {
        padding: 28px;
    }
    
    .sf-benefit-icon-box {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .sf-benefit-icon-box i {
        font-size: 28px;
    }
    
    .sf-benefit-title {
        font-size: 17px;
        margin-bottom: 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sf-hero-title {
        font-size: 36px;
    }
    
    .sf-hero-description {
        font-size: 16px;
    }
    
    .sf-why-exhibit-section {
        padding: 60px 0;
    }
    
    .sf-why-exhibit-grid {
        gap: 40px;
    }
    
    .sf-section-badge {
        font-size: 12px;
        padding: 5px 16px;
        letter-spacing: 1.2px;
    }
    
    .sf-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .sf-section-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .sf-key-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 30px;
    }
    
    .sf-benefit-card {
        padding: 22px 18px;
        border-radius: 12px;
    }
    
    .sf-benefit-number {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .sf-benefit-label {
        font-size: 13px;
    }
    
    .sf-download-box {
        padding: 22px;
        gap: 14px;
        border-radius: 12px;
    }
    
    .sf-download-icon {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .sf-download-icon i {
        font-size: 22px;
    }
    
    .sf-download-content h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .sf-download-content p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .sf-language-dropdown {
        max-width: 100%;
        font-size: 13px;
        padding: 9px 32px 9px 12px;
    }
    
    .sf-download-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .sf-benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .sf-benefit-box {
        padding: 24px;
        border-radius: 12px;
    }
    
    .sf-benefit-icon-box {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    
    .sf-benefit-icon-box i {
        font-size: 26px;
    }
    
    .sf-benefit-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .sf-benefit-desc {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .sf-booking-container {
        padding: 30px 20px;
    }

    .sf-form-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .sf-form-title {
        font-size: 26px;
    }

    .sf-form-subtitle {
        font-size: 15px;
    }

    .sf-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sf-radio-group {
        gap: 10px;
    }

    .sf-radio-option {
        padding: 12px 16px;
    }

    .sf-btn-submit {
        width: 100%;
        padding: 14px 30px;
    }

    .sf-contact-sidebar {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .sf-sidebar-title {
        font-size: 20px;
    }

    .sf-contact-item {
        padding: 15px;
        gap: 15px;
    }

    .sf-contact-icon {
        width: 45px;
        height: 45px;
    }

    .sf-contact-icon i {
        font-size: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .sf-hero-title {
        font-size: 28px;
    }
    
    .sf-hero-description {
        font-size: 14px;
    }
    
    .sf-why-exhibit-section {
        padding: 50px 0;
    }
    
    .sf-why-exhibit-grid {
        gap: 35px;
    }
    
    .sf-section-badge {
        font-size: 11px;
        padding: 4px 14px;
    }
    
    .sf-section-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .sf-section-text {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .sf-key-benefits {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .sf-benefit-card {
        padding: 20px 16px;
    }
    
    .sf-benefit-number {
        font-size: 26px;
    }
    
    .sf-benefit-label {
        font-size: 12px;
    }
    
    .sf-download-box {
        padding: 20px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .sf-download-icon {
        width: 48px;
        height: 48px;
    }
    
    .sf-download-icon i {
        font-size: 20px;
    }
    
    .sf-download-content {
        flex: 1;
        min-width: 0;
    }
    
    .sf-download-content h4 {
        font-size: 15px;
    }
    
    .sf-download-content p {
        font-size: 12px;
    }
    
    .sf-language-dropdown {
        font-size: 12px;
        padding: 8px 30px 8px 10px;
    }
    
    .sf-download-btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
    
    .sf-benefits-grid {
        gap: 16px;
    }
    
    .sf-benefit-box {
        padding: 20px;
    }
    
    .sf-benefit-icon-box {
        width: 55px;
        height: 55px;
        margin-bottom: 14px;
    }
    
    .sf-benefit-icon-box i {
        font-size: 24px;
    }
    
    .sf-benefit-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .sf-benefit-desc {
        font-size: 12px;
    }
    
    .sf-booking-section {
        padding: 60px 0;
    }

    .sf-booking-container {
        border-radius: 12px;
    }

    .sf-form-title {
        font-size: 22px;
    }

    .sf-input,
    .sf-select,
    .sf-textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .sf-label {
        font-size: 14px;
    }

    .sf-radio-text {
        font-size: 14px;
    }

    .sf-btn-submit {
        font-size: 15px;
    }
}

/* Animations */
.wow {
    visibility: hidden;
}

.wow-animated {
    visibility: visible;
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Print Styles */
@media print {
    .sf-why-exhibit-section {
        padding: 40px 0;
    }
    
    .sf-why-exhibit-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sf-benefit-card,
    .sf-benefit-box {
        break-inside: avoid;
    }
    
    .sf-download-btn {
        display: none;
    }
}