/* Exhibitor Page Styles */

/* Banner Section */
.page-banner {
    position: relative;
    background-color: #1a1a1a;
    padding: 120px 0 80px;
    overflow: hidden;
}

.page-breadcrumb svg{ width:16px; height:16px; opacity:.8 }

.page-banner .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.page-banner .shape-1,
.page-banner .shape-2 {
    position: absolute;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 2;
}

.page-banner .shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.page-banner .shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.page-banner .banner-inner {
    position: relative;
    z-index: 3;
}

.page-banner .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-banner .bread-crumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.page-banner .bread-crumb li {
    color: #cccccc;
    font-size: 1rem;
    margin-right: 15px;
    position: relative;
}

.page-banner .bread-crumb li:after {
    content: '/';
    position: absolute;
    right: -10px;
    color: #666;
}

.page-banner .bread-crumb li:last-child:after {
    content: '';
}

.page-banner .bread-crumb li a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner .bread-crumb li a:hover {
    color: #ffffff;
}

.page-banner .bread-crumb li.active {
    color: #ffffff;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.contact-section .form-box {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-section .form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00aaff, #0088cc, #006699);
}

/* Section Title */
.sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.sec-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.sec-title h2 .dot {
    color: #00aaff;
    font-size: 3rem;
    line-height: 0;
}

.sec-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00aaff, #0088cc);
    border-radius: 2px;
}

/* Form Styles */
.default-form {
    position: relative;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.field-inner {
    position: relative;
}

.field-inner input,
.field-inner textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #2c3e50;
}

.field-inner input:focus,
.field-inner textarea:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.1);
    transform: translateY(-2px);
}

.field-inner input::placeholder,
.field-inner textarea::placeholder {
    color: #95a5a6;
    transition: opacity 0.3s ease;
}

.field-inner input:focus::placeholder,
.field-inner textarea:focus::placeholder {
    opacity: 0.7;
}

.field-inner textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Validation States */
.field-inner input.is-valid,
.field-inner textarea.is-valid {
    border-color: #28a745;
    background-color: #f8fff9;
}

.field-inner input.is-invalid,
.field-inner textarea.is-invalid {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.field-error::before {
    content: '⚠';
    margin-right: 5px;
}

.field-success {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.field-success::before {
    content: '✓';
    margin-right: 5px;
}

/* Submit Button */
.theme-btn {
    background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.theme-btn:active {
    transform: translateY(-1px);
}

.theme-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-curve {
    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.6s ease;
}

.theme-btn:hover .btn-curve {
    left: 100%;
}

.btn-title {
    position: relative;
    z-index: 2;
}

/* Loading State */
.theme-btn.loading {
    pointer-events: none;
}

.theme-btn.loading .btn-title::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    display: none;
    align-items: center;
}

.alert.show {
    display: flex;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-success::before {
    content: '✅';
    margin-right: 10px;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-danger::before {
    content: '❌';
    margin-right: 10px;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.alert ul li {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 60px;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .form-box {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .sec-title h2 {
        font-size: 2rem;
    }
    
    .form-group.col-lg-6 {
        width: 100%;
    }
    
    .theme-btn {
        width: 100%;
        margin: 20px 0 0;
    }
}

@media (max-width: 480px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .sec-title h2 {
        font-size: 1.8rem;
    }
    
    .field-inner input,
    .field-inner textarea {
        padding: 12px 15px;
    }
}

/* Animation for form appearance */
.form-box {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus animation for inputs */
.field-inner {
    position: relative;
}

.field-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00aaff, #0088cc);
    transition: width 0.3s ease;
}

.field-inner input:focus + ::after,
.field-inner textarea:focus + ::after {
    width: 100%;
}


/* Enhanced form validation styles */
.field-error, .field-success {
    font-size: 0.875rem;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-error { color: #dc3545; }
.field-success { color: #28a745; }

.char-counter {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: right;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.theme-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Alert animations */
.alert {
    transition: all 0.3s ease;
}