/* eBrochure Float Button */
.ebrochure-float-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    z-index: 999;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.ebrochure-float-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    transform: translateY(-50%) rotate(-90deg) translateY(-3px);
}

.ebrochure-btn-text {
    font-size: 14px;
    white-space: nowrap;
}

.ebrochure-float-btn i {
    font-size: 16px;
}

/* eBrochure Slide Panel */
.ebrochure-slide-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ebrochure-slide-panel.active {
    right: 0;
}

.ebrochure-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.ebrochure-slide-panel.active .ebrochure-panel-overlay {
    opacity: 1;
}

.ebrochure-panel-content {
    position: absolute;
    right: -500px;
    top: 0;
    width: 500px;
    max-width: 90%;
    height: 100%;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ebrochure-slide-panel.active .ebrochure-panel-content {
    right: 0;
}

.ebrochure-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.ebrochure-close-btn:hover {
    background: #ff6b35;
    color: white;
    transform: rotate(90deg);
}

.ebrochure-close-btn i {
    font-size: 20px;
}

.ebrochure-panel-header {
    padding: 60px 30px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

.ebrochure-panel-header h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 700;
}

.ebrochure-panel-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
}

.ebrochure-form-container {
    padding: 30px;
}

/* Success & Error Messages */
.ebrochure-success-message,
.ebrochure-error-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInDown 0.5s ease;
}

.ebrochure-success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ebrochure-error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.ebrochure-success-message i,
.ebrochure-error-message i {
    font-size: 24px;
}

.ebrochure-success-message p,
.ebrochure-error-message p {
    margin: 0;
    font-weight: 600;
}

/* Form Styles */
.ebrochure-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ebrochure-form-group {
    display: flex;
    flex-direction: column;
}

.ebrochure-form input[type="text"],
.ebrochure-form input[type="email"],
.ebrochure-form input[type="tel"],
.ebrochure-form select,
.ebrochure-form textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.ebrochure-form input:focus,
.ebrochure-form select:focus,
.ebrochure-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.ebrochure-form 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='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.ebrochure-form textarea {
    resize: vertical;
    min-height: 80px;
}

.ebrochure-submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.ebrochure-submit-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.ebrochure-submit-btn i {
    font-size: 18px;
}

/* Animation */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ebrochure-float-btn {
        right: 10px;
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .ebrochure-btn-text {
        font-size: 12px;
    }
    
    .ebrochure-float-btn i {
        font-size: 14px;
    }
    
    .ebrochure-panel-content {
        width: 100%;
        max-width: 100%;
    }
    
    .ebrochure-panel-header {
        padding: 50px 20px 20px;
    }
    
    .ebrochure-panel-header h2 {
        font-size: 24px;
    }
    
    .ebrochure-panel-header p {
        font-size: 14px;
    }
    
    .ebrochure-form-container {
        padding: 20px;
    }
    
    .ebrochure-form input[type="text"],
    .ebrochure-form input[type="email"],
    .ebrochure-form input[type="tel"],
    .ebrochure-form select,
    .ebrochure-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .ebrochure-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ebrochure-float-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .ebrochure-btn-text {
        font-size: 11px;
    }
    
    .ebrochure-panel-header h2 {
        font-size: 20px;
    }
}

/* Scrollbar Styling for Panel */
.ebrochure-panel-content::-webkit-scrollbar {
    width: 8px;
}

.ebrochure-panel-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.ebrochure-panel-content::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

.ebrochure-panel-content::-webkit-scrollbar-thumb:hover {
    background: #f7931e;
}
